├── .gitignore ├── Classes ├── SRGNovelGameTexts.h └── SRGNovelGameTexts.m ├── LICENSE ├── README.md ├── SRGNovelGameTexts.podspec ├── SRGNovelGameTexts.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SRGNovelGameTexts ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── SRGNovelGameTextsTests ├── Info.plist └── SRGNovelGameTextsTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/SRGNovelGameTexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/Classes/SRGNovelGameTexts.h -------------------------------------------------------------------------------- /Classes/SRGNovelGameTexts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/Classes/SRGNovelGameTexts.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/README.md -------------------------------------------------------------------------------- /SRGNovelGameTexts.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts.podspec -------------------------------------------------------------------------------- /SRGNovelGameTexts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SRGNovelGameTexts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SRGNovelGameTexts/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/AppDelegate.h -------------------------------------------------------------------------------- /SRGNovelGameTexts/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/AppDelegate.m -------------------------------------------------------------------------------- /SRGNovelGameTexts/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SRGNovelGameTexts/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SRGNovelGameTexts/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SRGNovelGameTexts/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/Info.plist -------------------------------------------------------------------------------- /SRGNovelGameTexts/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/ViewController.h -------------------------------------------------------------------------------- /SRGNovelGameTexts/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/ViewController.m -------------------------------------------------------------------------------- /SRGNovelGameTexts/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTexts/main.m -------------------------------------------------------------------------------- /SRGNovelGameTextsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTextsTests/Info.plist -------------------------------------------------------------------------------- /SRGNovelGameTextsTests/SRGNovelGameTextsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazu0620/SRGNovelGameTexts/HEAD/SRGNovelGameTextsTests/SRGNovelGameTextsTests.m --------------------------------------------------------------------------------