├── .gitignore ├── LICENSE ├── README.md ├── cpp └── Shuzzle │ ├── Shuzzle.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── Shuzzle │ ├── BArray.cpp │ ├── Board.cpp │ ├── EArray.cpp │ ├── GoCore_GLUT.cpp │ ├── GoGame.cpp │ ├── GraphisTestCore_GLUT.cpp │ ├── IOFF.h │ ├── IOUtils.cpp │ ├── InvasionCore_GLUT.cpp │ ├── InvasionGame.cpp │ ├── LCNet.h │ ├── Lewcid_0_0.h │ ├── MineCore_GLUT.cpp │ ├── MineGame.cpp │ ├── OSBinding.cpp │ ├── OSBinding_SDL.cpp │ ├── OSBinding_Win32.cpp │ ├── ShuzzleCore_GLUT.cpp │ ├── ShuzzleGame.cpp │ ├── Utils.h │ ├── gennet.h │ ├── lewcid.h │ ├── main.cpp │ ├── matrixclass.cpp │ └── pnt.cpp ├── docs ├── FreedGo │ ├── boards │ │ ├── 3.go_3d.json │ │ ├── 5.go_3d.json │ │ ├── 6.go_3d.json │ │ ├── box.go_3d.json │ │ ├── cylinder.go_3d.json │ │ ├── diamond.go_3d.json │ │ ├── diamond455.go_3d.json │ │ ├── flat.go_3d.json │ │ ├── layered.go_3d.json │ │ ├── mobius.go_3d.json │ │ ├── sphere.go_3d.json │ │ └── torus.go_3d.json │ ├── boards_all.js │ ├── datagen.html │ ├── freed_go.jpg │ ├── freed_go.js │ ├── gentools │ │ ├── capture.js │ │ ├── local_host_php.sh │ │ ├── pwd.php │ │ └── save_to_file.php │ ├── index.html │ ├── main.css │ ├── mobius.go_3d.json.js │ └── three.js ├── Shuzzle │ ├── index.html │ ├── main.css │ ├── shuzzle.jpg │ ├── shuzzle_boards.js │ ├── shuzzle_core.js │ ├── shuzzle_game.js │ └── three.js └── index.html └── v1 ├── FreedGoBoards ├── 3.go_3d.json ├── 5.go_3d.json ├── 6.go_3d.json ├── box.go_3d.json ├── cylinder.go_3d.json ├── diamond.go_3d.json ├── flat.go_3d.json ├── layered.go_3d.json ├── mobius.go_3d.json ├── sphere.go_3d.json ├── test_file └── torus.go_3d.json ├── Lewcid ├── BArray.cpp ├── Board.cpp ├── EArray.cpp ├── GoCore_GLUT.cpp ├── GoGame.cpp ├── GraphisTestCore_GLUT.cpp ├── IOFF.h ├── IOUtils.cpp ├── InvasionCore_GLUT.cpp ├── InvasionGame.cpp ├── LCNet.h ├── Lewcid_0_0.h ├── MineCore_GLUT.cpp ├── MineGame.cpp ├── OSBinding.cpp ├── OSBinding_SDL.cpp ├── OSBinding_Win32.cpp ├── ShuzzleCore_GLUT.cpp ├── ShuzzleGame.cpp ├── Utils.h ├── gennet.h ├── lewcid.h ├── matrixclass.cpp └── pnt.cpp └── ShuzzleBoards ├── puzzle_1.shuzzle.json ├── puzzle_2.shuzzle.json ├── puzzle_3.shuzzle.json ├── puzzle_4.shuzzle.json ├── puzzle_5.shuzzle.json ├── puzzle_6.shuzzle.json ├── puzzle_7.shuzzle.json ├── puzzle_8.shuzzle.json └── puzzle_9.shuzzle.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/README.md -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/BArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/BArray.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/Board.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/EArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/EArray.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/GoCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/GoCore_GLUT.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/GoGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/GoGame.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/GraphisTestCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/GraphisTestCore_GLUT.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/IOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/IOFF.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/IOUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/IOUtils.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/InvasionCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/InvasionCore_GLUT.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/InvasionGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/InvasionGame.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/LCNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/LCNet.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/Lewcid_0_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/Lewcid_0_0.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/MineCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/MineCore_GLUT.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/MineGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/MineGame.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/OSBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/OSBinding.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/OSBinding_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/OSBinding_SDL.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/OSBinding_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/OSBinding_Win32.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/ShuzzleCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/ShuzzleCore_GLUT.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/ShuzzleGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/ShuzzleGame.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/Utils.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/gennet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/gennet.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/lewcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/lewcid.h -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/main.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/matrixclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/matrixclass.cpp -------------------------------------------------------------------------------- /cpp/Shuzzle/Shuzzle/pnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/cpp/Shuzzle/Shuzzle/pnt.cpp -------------------------------------------------------------------------------- /docs/FreedGo/boards/3.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/3.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/5.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/5.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/6.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/6.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/box.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/box.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/cylinder.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/cylinder.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/diamond.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/diamond.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/diamond455.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/diamond455.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/flat.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/flat.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/layered.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/layered.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/mobius.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/mobius.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/sphere.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/sphere.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards/torus.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards/torus.go_3d.json -------------------------------------------------------------------------------- /docs/FreedGo/boards_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/boards_all.js -------------------------------------------------------------------------------- /docs/FreedGo/datagen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/datagen.html -------------------------------------------------------------------------------- /docs/FreedGo/freed_go.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/freed_go.jpg -------------------------------------------------------------------------------- /docs/FreedGo/freed_go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/freed_go.js -------------------------------------------------------------------------------- /docs/FreedGo/gentools/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/gentools/capture.js -------------------------------------------------------------------------------- /docs/FreedGo/gentools/local_host_php.sh: -------------------------------------------------------------------------------- 1 | 2 | cd ../../ 3 | php -S localhost:5831 4 | -------------------------------------------------------------------------------- /docs/FreedGo/gentools/pwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/gentools/pwd.php -------------------------------------------------------------------------------- /docs/FreedGo/gentools/save_to_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/gentools/save_to_file.php -------------------------------------------------------------------------------- /docs/FreedGo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/index.html -------------------------------------------------------------------------------- /docs/FreedGo/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/main.css -------------------------------------------------------------------------------- /docs/FreedGo/mobius.go_3d.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/mobius.go_3d.json.js -------------------------------------------------------------------------------- /docs/FreedGo/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/FreedGo/three.js -------------------------------------------------------------------------------- /docs/Shuzzle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/index.html -------------------------------------------------------------------------------- /docs/Shuzzle/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/main.css -------------------------------------------------------------------------------- /docs/Shuzzle/shuzzle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/shuzzle.jpg -------------------------------------------------------------------------------- /docs/Shuzzle/shuzzle_boards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/shuzzle_boards.js -------------------------------------------------------------------------------- /docs/Shuzzle/shuzzle_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/shuzzle_core.js -------------------------------------------------------------------------------- /docs/Shuzzle/shuzzle_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/shuzzle_game.js -------------------------------------------------------------------------------- /docs/Shuzzle/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/Shuzzle/three.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/docs/index.html -------------------------------------------------------------------------------- /v1/FreedGoBoards/3.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/3.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/5.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/5.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/6.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/6.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/box.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/box.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/cylinder.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/cylinder.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/diamond.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/diamond.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/flat.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/flat.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/layered.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/layered.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/mobius.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/mobius.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/sphere.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/sphere.go_3d.json -------------------------------------------------------------------------------- /v1/FreedGoBoards/test_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v1/FreedGoBoards/torus.go_3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/FreedGoBoards/torus.go_3d.json -------------------------------------------------------------------------------- /v1/Lewcid/BArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/BArray.cpp -------------------------------------------------------------------------------- /v1/Lewcid/Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/Board.cpp -------------------------------------------------------------------------------- /v1/Lewcid/EArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/EArray.cpp -------------------------------------------------------------------------------- /v1/Lewcid/GoCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/GoCore_GLUT.cpp -------------------------------------------------------------------------------- /v1/Lewcid/GoGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/GoGame.cpp -------------------------------------------------------------------------------- /v1/Lewcid/GraphisTestCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/GraphisTestCore_GLUT.cpp -------------------------------------------------------------------------------- /v1/Lewcid/IOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/IOFF.h -------------------------------------------------------------------------------- /v1/Lewcid/IOUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/IOUtils.cpp -------------------------------------------------------------------------------- /v1/Lewcid/InvasionCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/InvasionCore_GLUT.cpp -------------------------------------------------------------------------------- /v1/Lewcid/InvasionGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/InvasionGame.cpp -------------------------------------------------------------------------------- /v1/Lewcid/LCNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/LCNet.h -------------------------------------------------------------------------------- /v1/Lewcid/Lewcid_0_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/Lewcid_0_0.h -------------------------------------------------------------------------------- /v1/Lewcid/MineCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/MineCore_GLUT.cpp -------------------------------------------------------------------------------- /v1/Lewcid/MineGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/MineGame.cpp -------------------------------------------------------------------------------- /v1/Lewcid/OSBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/OSBinding.cpp -------------------------------------------------------------------------------- /v1/Lewcid/OSBinding_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/OSBinding_SDL.cpp -------------------------------------------------------------------------------- /v1/Lewcid/OSBinding_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/OSBinding_Win32.cpp -------------------------------------------------------------------------------- /v1/Lewcid/ShuzzleCore_GLUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/ShuzzleCore_GLUT.cpp -------------------------------------------------------------------------------- /v1/Lewcid/ShuzzleGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/ShuzzleGame.cpp -------------------------------------------------------------------------------- /v1/Lewcid/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/Utils.h -------------------------------------------------------------------------------- /v1/Lewcid/gennet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/gennet.h -------------------------------------------------------------------------------- /v1/Lewcid/lewcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/lewcid.h -------------------------------------------------------------------------------- /v1/Lewcid/matrixclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/matrixclass.cpp -------------------------------------------------------------------------------- /v1/Lewcid/pnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/Lewcid/pnt.cpp -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_1.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_1.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_2.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_2.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_3.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_3.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_4.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_4.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_5.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_5.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_6.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_6.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_7.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_7.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_8.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_8.shuzzle.json -------------------------------------------------------------------------------- /v1/ShuzzleBoards/puzzle_9.shuzzle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leweyg/FreedGames/HEAD/v1/ShuzzleBoards/puzzle_9.shuzzle.json --------------------------------------------------------------------------------