├── .github └── FUNDING.yml ├── Default-568h@2x.png ├── README.md ├── Resources ├── fonts │ └── GD-DOTFONT-DQ-TTF_008.ttf └── images │ └── m24@2x.png ├── UIKitForGame ├── CustomFontLabel │ ├── CustomFontLabel.h │ └── CustomFontLabel.m ├── DQView │ ├── DQView.h │ └── DQView.m ├── DamageValueLabel │ ├── DamageValueLabel.h │ └── DamageValueLabel.m ├── UIImageView+effects │ ├── UIImage+fill.h │ ├── UIImage+fill.m │ ├── UIImageView+effects.h │ └── UIImageView+effects.m └── UIView+shake │ ├── UIView+shake.h │ └── UIView+shake.m ├── UIKitForGameDemo.xcodeproj └── project.pbxproj └── UIKitForGameDemo ├── AppDelegate.h ├── AppDelegate.m ├── Launch Screen.xib ├── UIKitForGameDemo-Info.plist ├── UIKitForGameDemo-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj ├── InfoPlist.strings └── ViewController.xib └── main.m /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/README.md -------------------------------------------------------------------------------- /Resources/fonts/GD-DOTFONT-DQ-TTF_008.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/Resources/fonts/GD-DOTFONT-DQ-TTF_008.ttf -------------------------------------------------------------------------------- /Resources/images/m24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/Resources/images/m24@2x.png -------------------------------------------------------------------------------- /UIKitForGame/CustomFontLabel/CustomFontLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/CustomFontLabel/CustomFontLabel.h -------------------------------------------------------------------------------- /UIKitForGame/CustomFontLabel/CustomFontLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/CustomFontLabel/CustomFontLabel.m -------------------------------------------------------------------------------- /UIKitForGame/DQView/DQView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/DQView/DQView.h -------------------------------------------------------------------------------- /UIKitForGame/DQView/DQView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/DQView/DQView.m -------------------------------------------------------------------------------- /UIKitForGame/DamageValueLabel/DamageValueLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/DamageValueLabel/DamageValueLabel.h -------------------------------------------------------------------------------- /UIKitForGame/DamageValueLabel/DamageValueLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/DamageValueLabel/DamageValueLabel.m -------------------------------------------------------------------------------- /UIKitForGame/UIImageView+effects/UIImage+fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIImageView+effects/UIImage+fill.h -------------------------------------------------------------------------------- /UIKitForGame/UIImageView+effects/UIImage+fill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIImageView+effects/UIImage+fill.m -------------------------------------------------------------------------------- /UIKitForGame/UIImageView+effects/UIImageView+effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIImageView+effects/UIImageView+effects.h -------------------------------------------------------------------------------- /UIKitForGame/UIImageView+effects/UIImageView+effects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIImageView+effects/UIImageView+effects.m -------------------------------------------------------------------------------- /UIKitForGame/UIView+shake/UIView+shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIView+shake/UIView+shake.h -------------------------------------------------------------------------------- /UIKitForGame/UIView+shake/UIView+shake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGame/UIView+shake/UIView+shake.m -------------------------------------------------------------------------------- /UIKitForGameDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIKitForGameDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/AppDelegate.h -------------------------------------------------------------------------------- /UIKitForGameDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/AppDelegate.m -------------------------------------------------------------------------------- /UIKitForGameDemo/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/Launch Screen.xib -------------------------------------------------------------------------------- /UIKitForGameDemo/UIKitForGameDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/UIKitForGameDemo-Info.plist -------------------------------------------------------------------------------- /UIKitForGameDemo/UIKitForGameDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/UIKitForGameDemo-Prefix.pch -------------------------------------------------------------------------------- /UIKitForGameDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/ViewController.h -------------------------------------------------------------------------------- /UIKitForGameDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/ViewController.m -------------------------------------------------------------------------------- /UIKitForGameDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIKitForGameDemo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /UIKitForGameDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/UIKitForGame/HEAD/UIKitForGameDemo/main.m --------------------------------------------------------------------------------