├── .gitignore ├── Base.lproj └── MainMenu.xib ├── Battleship.swift ├── Battleship.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Info.plist ├── README.md └── gh ├── sampling.png └── smart.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/.gitignore -------------------------------------------------------------------------------- /Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Battleship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/Battleship.swift -------------------------------------------------------------------------------- /Battleship.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/Battleship.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Battleship.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/Battleship.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/README.md -------------------------------------------------------------------------------- /gh/sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/gh/sampling.png -------------------------------------------------------------------------------- /gh/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radex/Battleship/HEAD/gh/smart.png --------------------------------------------------------------------------------