├── .clang-format ├── .github └── workflows │ ├── build.yml │ ├── docs.yml │ └── vsenv.bat ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakeSettings.json ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.rst ├── ROADMAP.md ├── VERSION.md ├── cmake ├── FindSphinx.cmake ├── MacOSXBundleInfo.plist.in ├── antara.cmake ├── compiler_targets.cmake ├── dependencies.cmake └── version.hpp.in ├── codecov.yml ├── docs ├── CMakeLists.txt ├── Doxyfile.in ├── Makefile ├── assets │ ├── black_window.png │ ├── border_problem.png │ ├── diagram.png │ ├── download_icns.png │ ├── download_icns_result.png │ ├── fb_background.png │ ├── fb_column.png │ ├── fb_columns.png │ ├── fb_player_creation.png │ ├── fb_score.png │ ├── gallery │ │ ├── flappy-bird.gif │ │ ├── flappy.png │ │ ├── tictactoe-gif.gif │ │ ├── tictactoe-o-win.png │ │ ├── tictactoe-playing.png │ │ ├── tictactoe-tie.png │ │ ├── tictactoe-x-win.png │ │ ├── wolf-ig.png │ │ ├── wolf-ig2.png │ │ └── wolf.gif │ ├── grid_lines.png │ ├── kmd_logo.png │ ├── tictactoe.grid.jpg │ ├── tictactoe_board.png │ ├── tictactoe_real_grid.png │ └── vertex_order.png ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── source │ ├── api │ ├── animation2d.rst │ ├── api_index.rst │ ├── config.rst │ ├── core.rst │ ├── ecs.rst │ ├── event.rst │ └── sfml.rst │ ├── modules │ ├── animation2d.rst │ ├── audio.rst │ ├── blockchain.rst │ ├── box2d.rst │ ├── collisions.rst │ ├── config.rst │ ├── core.rst │ ├── ecs.rst │ ├── event.rst │ ├── geometry.rst │ ├── graphics.rst │ ├── input.rst │ ├── lua.rst │ ├── math.rst │ ├── modules.rst │ ├── resources.rst │ ├── scenes.rst │ ├── sfml.rst │ ├── timer.rst │ ├── transform.rst │ └── world.rst │ └── tutorials │ ├── animation2d.rst │ ├── basic_setup.rst │ ├── ecs.rst │ ├── event.rst │ ├── flappy-bird.rst │ ├── getting_started.rst │ ├── quick_and_dirty.rst │ ├── tic-tac-toe.rst │ └── tutorials.rst ├── lgtm.yml ├── messy_playground ├── CMakeLists.txt ├── blockchain │ ├── CMakeLists.txt │ └── fake_ingame_shop │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.basisdraft.appdata.xml │ │ │ └── org.antara.gaming.sfml.basisdraft.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── blockchain_ingame_shop_example_install.cmake │ │ │ └── kmd_logo.icns │ │ └── nspv_fake_ingame_shop.cpp ├── common │ ├── CMakeLists.txt │ └── step_basis_world_compiling.cpp ├── ecs │ ├── CMakeLists.txt │ └── system.example.cpp ├── glfw │ ├── CMakeLists.txt │ └── basis-draft │ │ ├── CMakeLists.txt │ │ ├── assets │ │ └── fonts │ │ │ └── sansation.ttf │ │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.glfw.basisdraft.appdata.xml │ │ │ └── org.antara.gaming.glfw.basisdraft.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── glfw_example_install.cmake │ │ │ └── kmd_logo.icns │ │ └── main.cpp ├── quick_and_dirty │ ├── CMakeLists.txt │ └── quick_and_dirty.cpp ├── sdl │ ├── CMakeLists.txt │ └── basis-draft │ │ ├── CMakeLists.txt │ │ ├── assets │ │ ├── fonts │ │ │ └── sansation.ttf │ │ └── textures │ │ │ └── kmd.png │ │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sdl.basisdraft.appdata.xml │ │ │ └── org.antara.gaming.sdl.basisdraft.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sdl_example_install.cmake │ │ └── main.cpp └── sfml │ ├── CMakeLists.txt │ ├── basis-draft │ ├── CMakeLists.txt │ ├── assets │ │ ├── fonts │ │ │ └── sansation.ttf │ │ ├── musics │ │ │ └── .gitkeep │ │ ├── sounds │ │ │ └── .gitkeep │ │ └── textures │ │ │ ├── .gitkeep │ │ │ ├── Character_1_Up.png │ │ │ ├── bheet_arrival.png │ │ │ ├── mage_idle_dir_1.png │ │ │ └── tileSand1.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.basisdraft.appdata.xml │ │ │ └── org.antara.gaming.sfml.basisdraft.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_example_install.cmake │ └── main.cpp │ ├── flappy-bird-scripted │ ├── CMakeLists.txt │ ├── assets │ │ ├── fonts │ │ │ ├── .gitkeep │ │ │ └── sansation.ttf │ │ ├── musics │ │ │ └── .gitkeep │ │ ├── scripts │ │ │ ├── .gitkeep │ │ │ ├── scenes │ │ │ │ └── lua │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── game_scene.lua │ │ │ └── systems │ │ │ │ └── lua │ │ │ │ └── .gitkeep │ │ ├── sounds │ │ │ └── .gitkeep │ │ └── textures │ │ │ └── .gitkeep │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.desktop │ │ │ └── org.antara.gaming.sfml.flappybirds.appdata.xml │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappy_install.cmake │ ├── main.cpp │ ├── world.cpp │ └── world.hpp │ ├── flappy-bird │ ├── CMakeLists.txt │ ├── assets │ │ ├── fonts │ │ │ ├── .gitkeep │ │ │ └── sansation.ttf │ │ ├── musics │ │ │ └── .gitkeep │ │ ├── scripts │ │ │ ├── .gitkeep │ │ │ ├── scenes │ │ │ │ └── lua │ │ │ │ │ └── .gitkeep │ │ │ └── systems │ │ │ │ └── lua │ │ │ │ └── .gitkeep │ │ ├── sounds │ │ │ └── .gitkeep │ │ └── textures │ │ │ └── .gitkeep │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.desktop │ │ │ └── org.antara.gaming.sfml.flappybirds.appdata.xml │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappy_install.cmake │ ├── game.scene.cpp │ ├── game.scene.hpp │ ├── intro.scene.cpp │ ├── intro.scene.hpp │ ├── main.cpp │ ├── world.cpp │ └── world.hpp │ ├── tic-tac-toe-scripted │ ├── CMakeLists.txt │ ├── assets │ │ ├── fonts │ │ │ └── .gitkeep │ │ ├── musics │ │ │ └── .gitkeep │ │ ├── scripts │ │ │ ├── .gitkeep │ │ │ ├── lib │ │ │ │ └── lua │ │ │ │ │ └── .gitkeep │ │ │ ├── lua │ │ │ │ └── .gitkeep │ │ │ ├── scenes │ │ │ │ └── lua │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── game_scene.lua │ │ │ └── systems │ │ │ │ └── lua │ │ │ │ └── .gitkeep │ │ ├── sounds │ │ │ └── .gitkeep │ │ └── textures │ │ │ └── .gitkeep │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.tictactoe.scripted.appdata.xml │ │ │ └── org.antara.gaming.sfml.tictactoe.scripted.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_tictactoe_scripted_install.cmake │ ├── main.cpp │ ├── world.cpp │ └── world.hpp │ └── tic-tac-toe │ ├── CMakeLists.txt │ ├── assets │ ├── config │ │ └── game.config.maker.json │ ├── fonts │ │ ├── .gitkeep │ │ └── sansation.ttf │ ├── musics │ │ └── .gitkeep │ ├── scripts │ │ ├── .gitkeep │ │ ├── scenes │ │ │ └── lua │ │ │ │ └── .gitkeep │ │ └── systems │ │ │ └── lua │ │ │ └── .gitkeep │ ├── sounds │ │ └── .gitkeep │ └── textures │ │ └── .gitkeep │ ├── data │ ├── linux │ │ ├── komodo_icon.png │ │ ├── org.antara.gaming.sfml.tictactoe.appdata.xml │ │ └── org.antara.gaming.sfml.tictactoe.desktop │ └── osx │ │ ├── Packaging_CMakeDMGBackground.tif │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ ├── kmd_logo.icns │ │ └── sfml_tictactoe_install.cmake │ ├── game.scene.cpp │ ├── game.scene.hpp │ ├── main.cpp │ ├── tic.tac.toe.components.hpp │ ├── tic.tac.toe.constants.hpp │ ├── tic.tac.toe.factory.cpp │ ├── tic.tac.toe.factory.hpp │ ├── world.cpp │ └── world.hpp ├── modules ├── CMakeLists.txt ├── animation2d │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── animation2d │ │ ├── animation.2d.cpp │ │ ├── animation.2d.hpp │ │ ├── antara.animation2d.ranged_anim.hpp │ │ ├── component.animation.2d.cpp │ │ └── component.animation.2d.hpp ├── audio │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── audio │ │ ├── audio.status.hpp │ │ ├── component.music.hpp │ │ └── component.sound.effect.hpp ├── blockchain │ ├── CMakeLists.txt │ ├── antara │ │ └── gaming │ │ │ └── blockchain │ │ │ ├── antara.blockchain.tests.cpp │ │ │ ├── nspv.api.cpp │ │ │ ├── nspv.api.hpp │ │ │ ├── nspv.integrations.tests.cpp │ │ │ ├── nspv.system.cpp │ │ │ ├── nspv.system.hpp │ │ │ └── nspv.system.tests.cpp │ └── assets │ │ └── tools │ │ └── .gitkeep ├── box2d │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── box2d │ │ ├── antara.box2d.system.tests.cpp │ │ ├── antara.box2d.tests.cpp │ │ ├── box2d.system.cpp │ │ └── box2d.system.hpp ├── collisions │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── collisions │ │ ├── antara.basic.collisions.system.tests.cpp │ │ ├── antara.collisions.tests.cpp │ │ ├── basic.collision.system.cpp │ │ └── basic.collision.system.hpp ├── config │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── config │ │ ├── antara.config.game.maker.tests.cpp │ │ ├── antara.config.loading.tests.cpp │ │ ├── antara.config.tests.cpp │ │ ├── config.game.maker.cpp │ │ ├── config.game.maker.hpp │ │ └── config.loading.hpp ├── core │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── core │ │ ├── antara.core.real.path.tests.cpp │ │ ├── antara.core.tests.cpp │ │ ├── antara.core.version.tests.cpp │ │ ├── api.scaling.cpp │ │ ├── api.scaling.hpp │ │ ├── details │ │ ├── emscripten │ │ │ ├── api.scaling.hpp │ │ │ └── real.path.hpp │ │ ├── linux │ │ │ ├── api.scaling.hpp │ │ │ └── real.path.hpp │ │ ├── osx │ │ │ ├── api.scaling.hpp │ │ │ ├── api.scaling.mm │ │ │ └── real.path.hpp │ │ ├── posix │ │ │ └── open.url.browser.hpp │ │ └── windows │ │ │ ├── api.scaling.hpp │ │ │ ├── open.url.browser.hpp │ │ │ └── real.path.hpp │ │ ├── open.url.browser.hpp │ │ ├── real.path.cpp │ │ ├── real.path.hpp │ │ ├── reflection.entity.registry.hpp │ │ ├── safe.refl.hpp │ │ └── version.hpp ├── ecs │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── ecs │ │ ├── all.components.hpp │ │ ├── antara.ecs.event.add.base.system.tests.cpp │ │ ├── antara.ecs.system.manager.tests.cpp │ │ ├── antara.ecs.system.tests.cpp │ │ ├── antara.ecs.tests.cpp │ │ ├── base.system.cpp │ │ ├── base.system.hpp │ │ ├── event.add.base.system.cpp │ │ ├── event.add.base.system.hpp │ │ ├── interpolation.system.cpp │ │ ├── interpolation.system.hpp │ │ ├── lambda.system.hpp │ │ ├── lambda.system.ipp │ │ ├── system.hpp │ │ ├── system.ipp │ │ ├── system.manager.cpp │ │ ├── system.manager.hpp │ │ ├── system.manager.ipp │ │ ├── system.type.hpp │ │ ├── virtual.input.system.cpp │ │ └── virtual.input.system.hpp ├── event │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── event │ │ ├── all.events.hpp │ │ ├── antara.event.fatal.error.tests.cpp │ │ ├── antara.event.key.pressed.tests.cpp │ │ ├── antara.event.key.released.tests.cpp │ │ ├── antara.event.mouse.button.pressed.tests.cpp │ │ ├── antara.event.mouse.button.released.tests.cpp │ │ ├── antara.event.mouse.moved.tests.cpp │ │ ├── antara.event.quit.game.tests.cpp │ │ ├── antara.event.tests.cpp │ │ ├── antara.event.type.traits.tests.cpp │ │ ├── canvas.resized.hpp │ │ ├── event.invoker.hpp │ │ ├── fatal.error.cpp │ │ ├── fatal.error.hpp │ │ ├── fill.image.properties.hpp │ │ ├── get.mouse.position.hpp │ │ ├── key.pressed.cpp │ │ ├── key.pressed.hpp │ │ ├── key.released.cpp │ │ ├── key.released.hpp │ │ ├── load.textures.hpp │ │ ├── mouse.button.pressed.cpp │ │ ├── mouse.button.pressed.hpp │ │ ├── mouse.button.released.cpp │ │ ├── mouse.button.released.hpp │ │ ├── mouse.moved.cpp │ │ ├── mouse.moved.hpp │ │ ├── quit.game.cpp │ │ ├── quit.game.hpp │ │ ├── set.mouse.position.hpp │ │ ├── start.game.hpp │ │ ├── type.traits.hpp │ │ └── window.resized.hpp ├── geometry │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── geometry │ │ ├── all.geometry.components.hpp │ │ ├── antara.geometry.component.circle.tests.cpp │ │ ├── antara.geometry.component.rectangle.tests.cpp │ │ ├── antara.geometry.tests.cpp │ │ ├── component.circle.cpp │ │ ├── component.circle.hpp │ │ ├── component.rectangle.cpp │ │ ├── component.rectangle.hpp │ │ └── component.vertex.hpp ├── glfw │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── glfw │ │ ├── graphic.system.cpp │ │ ├── graphic.system.hpp │ │ ├── input.system.cpp │ │ └── input.system.hpp ├── graphics │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── graphics │ │ ├── all.graphics.components.hpp │ │ ├── antara.graphics.component.color.tests.cpp │ │ ├── antara.graphics.component.text.cpp │ │ ├── antara.graphics.tests.cpp │ │ ├── component.2d.render.texture.hpp │ │ ├── component.canvas.hpp │ │ ├── component.color.hpp │ │ ├── component.layer.hpp │ │ ├── component.sprite.hpp │ │ ├── component.text.cpp │ │ └── component.text.hpp ├── input │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── input │ │ ├── keyboard.hpp │ │ ├── mouse.hpp │ │ ├── virtual.cpp │ │ └── virtual.hpp ├── lua │ ├── CMakeLists.txt │ ├── antara │ │ └── gaming │ │ │ └── lua │ │ │ ├── antara.lua.system.tests.cpp │ │ │ ├── antara.lua.tests.cpp │ │ │ ├── array_utils.lua │ │ │ ├── component.lua.cpp │ │ │ ├── component.lua.hpp │ │ │ ├── details │ │ │ └── lua.scripted.system.hpp │ │ │ ├── enum.lua │ │ │ ├── lua.system.cpp │ │ │ ├── lua.system.hpp │ │ │ ├── lua.system.ipp │ │ │ ├── lua.system.priv.ipp │ │ │ └── scenes_system.lua │ └── assets │ │ └── lua_assets │ │ └── scripts │ │ ├── antara.entity.player.lua │ │ ├── antara.tests.lua │ │ ├── scenes │ │ └── lua │ │ │ ├── another_test_scene.lua │ │ │ └── test_scene.lua │ │ └── systems │ │ └── pre_update_system.lua ├── math │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── math │ │ ├── antara.math.tests.cpp │ │ ├── antara.math.vector.tests.cpp │ │ ├── utility.hpp │ │ └── vector.hpp ├── resources │ ├── CMakeLists.txt │ ├── antara │ │ └── gaming │ │ │ └── resources │ │ │ ├── antara.resources.system.tests.cpp │ │ │ ├── antara.resources.tests.cpp │ │ │ └── resources.system.hpp │ └── assets │ │ └── fonts │ │ └── sansation.ttf ├── scenes │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── scenes │ │ ├── antara.scenes.base.scene.tests.cpp │ │ ├── antara.scenes.manager.tests.cpp │ │ ├── antara.scenes.tests.cpp │ │ ├── base.scene.cpp │ │ ├── base.scene.hpp │ │ ├── change.scene.event.hpp │ │ ├── scene.manager.cpp │ │ └── scene.manager.hpp ├── sdl │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── sdl │ │ ├── graphic.system.cpp │ │ ├── graphic.system.hpp │ │ ├── input.system.cpp │ │ ├── input.system.hpp │ │ ├── sdl.opengl.image.loading.cpp │ │ ├── sdl.opengl.image.loading.hpp │ │ ├── sdl.timer.hpp │ │ └── stb_image.h ├── sfml │ ├── CMakeLists.txt │ ├── antara │ │ └── gaming │ │ │ └── sfml │ │ │ ├── audio.system.cpp │ │ │ ├── audio.system.hpp │ │ │ ├── component.audio.hpp │ │ │ ├── component.drawable.hpp │ │ │ ├── event.play.sound.cpp │ │ │ ├── event.play.sound.hpp │ │ │ ├── graphic.system.cpp │ │ │ ├── graphic.system.hpp │ │ │ ├── input.system.cpp │ │ │ ├── input.system.hpp │ │ │ ├── komodo.intro.scene.cpp │ │ │ ├── komodo.intro.scene.hpp │ │ │ ├── lua.system.cpp │ │ │ ├── lua.system.hpp │ │ │ ├── resources.loader.hpp │ │ │ ├── resources.manager.cpp │ │ │ └── resources.manager.hpp │ └── assets │ │ ├── sounds │ │ ├── intro1.wav │ │ └── intro2.wav │ │ └── textures │ │ ├── .gitkeep │ │ ├── logo.png │ │ └── name.png ├── timer │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── timer │ │ ├── antara.timer.tests.cpp │ │ ├── antara.timer.time.step.tests.cpp │ │ ├── fps.hpp │ │ ├── time.step.cpp │ │ └── time.step.hpp ├── transform │ ├── CMakeLists.txt │ └── antara │ │ └── gaming │ │ └── transform │ │ ├── all.transform.components.hpp │ │ ├── antara.transform.component.position.tests.cpp │ │ ├── antara.transform.tests.cpp │ │ ├── component.position.cpp │ │ ├── component.position.hpp │ │ └── component.properties.hpp └── world │ ├── CMakeLists.txt │ └── antara │ └── gaming │ └── world │ ├── antara.world.app.tests.cpp │ ├── antara.world.tests.cpp │ ├── world.app.cpp │ └── world.app.hpp └── tutorials ├── flappy-bird ├── step_1 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_2 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_3 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_4 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_5 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_6 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_7 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── step_8 │ ├── CMakeLists.txt │ ├── assets │ │ ├── config │ │ │ └── game.config.maker.json │ │ └── textures │ │ │ └── player.png │ ├── cmake │ │ └── MacOSXBundleInfo.plist.in │ ├── data │ │ ├── linux │ │ │ ├── komodo_icon.png │ │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ │ └── org.antara.gaming.sfml.flappybird.desktop │ │ └── osx │ │ │ ├── Packaging_CMakeDMGBackground.tif │ │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ │ ├── kmd_logo.icns │ │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp └── step_with_komodo_nice_assets │ ├── CMakeLists.txt │ ├── assets │ ├── config │ │ └── game.config.maker.json │ └── textures │ │ ├── background.png │ │ ├── dragon_fall.png │ │ ├── dragon_hurt.png │ │ ├── dragon_jump.png │ │ ├── pipe_body.png │ │ └── pipe_cap.png │ ├── cmake │ └── MacOSXBundleInfo.plist.in │ ├── data │ ├── linux │ │ ├── komodo_icon.png │ │ ├── org.antara.gaming.sfml.flappybird.appdata.xml │ │ └── org.antara.gaming.sfml.flappybird.desktop │ └── osx │ │ ├── Packaging_CMakeDMGBackground.tif │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ ├── kmd_logo.icns │ │ └── sfml_flappybird_install.cmake │ └── flappy-bird.cpp ├── tic-tac-toe ├── step_1 │ ├── CMakeLists.txt │ └── tic-tac-toe.cpp ├── step_2 │ ├── CMakeLists.txt │ └── tic-tac-toe.cpp ├── step_3 │ ├── CMakeLists.txt │ └── tic-tac-toe.cpp └── step_4 │ ├── CMakeLists.txt │ └── tic-tac-toe.cpp └── wolf-3d └── final_step ├── CMakeLists.txt ├── assets ├── config │ └── game.config.maker.json ├── musics │ ├── ambient.ogg │ └── breath.ogg ├── sounds │ ├── walk1.wav │ ├── walk2.wav │ ├── walk3.wav │ └── walk4.wav └── textures │ ├── compass.png │ ├── compass_arrow.png │ ├── compass_inner_shadow.png │ ├── compass_ring.png │ ├── csgo.png │ ├── ground.jpg │ └── portal.png ├── cmake └── MacOSXBundleInfo.plist.in ├── data ├── linux │ ├── komodo_icon.png │ ├── org.antara.gaming.sfml.wolf3d.appdata.xml │ └── org.antara.gaming.sfml.wolf3d.desktop └── osx │ ├── Packaging_CMakeDMGBackground.tif │ ├── Packaging_CMakeDMGSetup.scpt │ ├── kmd_logo.icns │ └── sfml_wolf3d_install.cmake └── wolf-3d.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/vsenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/.github/workflows/vsenv.bat -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/README.rst -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /cmake/antara.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/antara.cmake -------------------------------------------------------------------------------- /cmake/compiler_targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/compiler_targets.cmake -------------------------------------------------------------------------------- /cmake/dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/dependencies.cmake -------------------------------------------------------------------------------- /cmake/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/cmake/version.hpp.in -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/assets/black_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/black_window.png -------------------------------------------------------------------------------- /docs/assets/border_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/border_problem.png -------------------------------------------------------------------------------- /docs/assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/diagram.png -------------------------------------------------------------------------------- /docs/assets/download_icns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/download_icns.png -------------------------------------------------------------------------------- /docs/assets/download_icns_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/download_icns_result.png -------------------------------------------------------------------------------- /docs/assets/fb_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/fb_background.png -------------------------------------------------------------------------------- /docs/assets/fb_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/fb_column.png -------------------------------------------------------------------------------- /docs/assets/fb_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/fb_columns.png -------------------------------------------------------------------------------- /docs/assets/fb_player_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/fb_player_creation.png -------------------------------------------------------------------------------- /docs/assets/fb_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/fb_score.png -------------------------------------------------------------------------------- /docs/assets/gallery/flappy-bird.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/flappy-bird.gif -------------------------------------------------------------------------------- /docs/assets/gallery/flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/flappy.png -------------------------------------------------------------------------------- /docs/assets/gallery/tictactoe-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/tictactoe-gif.gif -------------------------------------------------------------------------------- /docs/assets/gallery/tictactoe-o-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/tictactoe-o-win.png -------------------------------------------------------------------------------- /docs/assets/gallery/tictactoe-playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/tictactoe-playing.png -------------------------------------------------------------------------------- /docs/assets/gallery/tictactoe-tie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/tictactoe-tie.png -------------------------------------------------------------------------------- /docs/assets/gallery/tictactoe-x-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/tictactoe-x-win.png -------------------------------------------------------------------------------- /docs/assets/gallery/wolf-ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/wolf-ig.png -------------------------------------------------------------------------------- /docs/assets/gallery/wolf-ig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/wolf-ig2.png -------------------------------------------------------------------------------- /docs/assets/gallery/wolf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/gallery/wolf.gif -------------------------------------------------------------------------------- /docs/assets/grid_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/grid_lines.png -------------------------------------------------------------------------------- /docs/assets/kmd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/kmd_logo.png -------------------------------------------------------------------------------- /docs/assets/tictactoe.grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/tictactoe.grid.jpg -------------------------------------------------------------------------------- /docs/assets/tictactoe_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/tictactoe_board.png -------------------------------------------------------------------------------- /docs/assets/tictactoe_real_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/tictactoe_real_grid.png -------------------------------------------------------------------------------- /docs/assets/vertex_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/assets/vertex_order.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/api/animation2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/animation2d.rst -------------------------------------------------------------------------------- /docs/source/api/api_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/api_index.rst -------------------------------------------------------------------------------- /docs/source/api/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/config.rst -------------------------------------------------------------------------------- /docs/source/api/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/core.rst -------------------------------------------------------------------------------- /docs/source/api/ecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/ecs.rst -------------------------------------------------------------------------------- /docs/source/api/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/event.rst -------------------------------------------------------------------------------- /docs/source/api/sfml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/api/sfml.rst -------------------------------------------------------------------------------- /docs/source/modules/animation2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/animation2d.rst -------------------------------------------------------------------------------- /docs/source/modules/audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/audio.rst -------------------------------------------------------------------------------- /docs/source/modules/blockchain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/blockchain.rst -------------------------------------------------------------------------------- /docs/source/modules/box2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/box2d.rst -------------------------------------------------------------------------------- /docs/source/modules/collisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/collisions.rst -------------------------------------------------------------------------------- /docs/source/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/config.rst -------------------------------------------------------------------------------- /docs/source/modules/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/core.rst -------------------------------------------------------------------------------- /docs/source/modules/ecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/ecs.rst -------------------------------------------------------------------------------- /docs/source/modules/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/event.rst -------------------------------------------------------------------------------- /docs/source/modules/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/geometry.rst -------------------------------------------------------------------------------- /docs/source/modules/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/graphics.rst -------------------------------------------------------------------------------- /docs/source/modules/input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/input.rst -------------------------------------------------------------------------------- /docs/source/modules/lua.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/lua.rst -------------------------------------------------------------------------------- /docs/source/modules/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/math.rst -------------------------------------------------------------------------------- /docs/source/modules/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/modules.rst -------------------------------------------------------------------------------- /docs/source/modules/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/resources.rst -------------------------------------------------------------------------------- /docs/source/modules/scenes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/scenes.rst -------------------------------------------------------------------------------- /docs/source/modules/sfml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/sfml.rst -------------------------------------------------------------------------------- /docs/source/modules/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/timer.rst -------------------------------------------------------------------------------- /docs/source/modules/transform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/transform.rst -------------------------------------------------------------------------------- /docs/source/modules/world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/modules/world.rst -------------------------------------------------------------------------------- /docs/source/tutorials/animation2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/animation2d.rst -------------------------------------------------------------------------------- /docs/source/tutorials/basic_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/basic_setup.rst -------------------------------------------------------------------------------- /docs/source/tutorials/ecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/ecs.rst -------------------------------------------------------------------------------- /docs/source/tutorials/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/event.rst -------------------------------------------------------------------------------- /docs/source/tutorials/flappy-bird.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/flappy-bird.rst -------------------------------------------------------------------------------- /docs/source/tutorials/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/getting_started.rst -------------------------------------------------------------------------------- /docs/source/tutorials/quick_and_dirty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/quick_and_dirty.rst -------------------------------------------------------------------------------- /docs/source/tutorials/tic-tac-toe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/tic-tac-toe.rst -------------------------------------------------------------------------------- /docs/source/tutorials/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/docs/source/tutorials/tutorials.rst -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/lgtm.yml -------------------------------------------------------------------------------- /messy_playground/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/blockchain/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(fake_ingame_shop) -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/linux/org.antara.gaming.sfml.basisdraft.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/linux/org.antara.gaming.sfml.basisdraft.appdata.xml -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/linux/org.antara.gaming.sfml.basisdraft.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/linux/org.antara.gaming.sfml.basisdraft.desktop -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/osx/blockchain_ingame_shop_example_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/osx/blockchain_ingame_shop_example_install.cmake -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/blockchain/fake_ingame_shop/nspv_fake_ingame_shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/blockchain/fake_ingame_shop/nspv_fake_ingame_shop.cpp -------------------------------------------------------------------------------- /messy_playground/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/common/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/common/step_basis_world_compiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/common/step_basis_world_compiling.cpp -------------------------------------------------------------------------------- /messy_playground/ecs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/ecs/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/ecs/system.example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/ecs/system.example.cpp -------------------------------------------------------------------------------- /messy_playground/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(basis-draft) -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/linux/org.antara.gaming.glfw.basisdraft.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/linux/org.antara.gaming.glfw.basisdraft.appdata.xml -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/linux/org.antara.gaming.glfw.basisdraft.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/linux/org.antara.gaming.glfw.basisdraft.desktop -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/osx/glfw_example_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/osx/glfw_example_install.cmake -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/glfw/basis-draft/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/glfw/basis-draft/main.cpp -------------------------------------------------------------------------------- /messy_playground/quick_and_dirty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/quick_and_dirty/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/quick_and_dirty/quick_and_dirty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/quick_and_dirty/quick_and_dirty.cpp -------------------------------------------------------------------------------- /messy_playground/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(basis-draft) -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/assets/textures/kmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/assets/textures/kmd.png -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/linux/org.antara.gaming.sdl.basisdraft.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/linux/org.antara.gaming.sdl.basisdraft.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/linux/org.antara.gaming.sdl.basisdraft.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/linux/org.antara.gaming.sdl.basisdraft.desktop -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/data/osx/sdl_example_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/data/osx/sdl_example_install.cmake -------------------------------------------------------------------------------- /messy_playground/sdl/basis-draft/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sdl/basis-draft/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/musics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/sounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/textures/Character_1_Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/assets/textures/Character_1_Up.png -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/textures/bheet_arrival.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/assets/textures/bheet_arrival.png -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/textures/mage_idle_dir_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/assets/textures/mage_idle_dir_1.png -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/assets/textures/tileSand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/assets/textures/tileSand1.png -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/linux/org.antara.gaming.sfml.basisdraft.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/linux/org.antara.gaming.sfml.basisdraft.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/linux/org.antara.gaming.sfml.basisdraft.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/linux/org.antara.gaming.sfml.basisdraft.desktop -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/data/osx/sfml_example_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/data/osx/sfml_example_install.cmake -------------------------------------------------------------------------------- /messy_playground/sfml/basis-draft/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/basis-draft/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/musics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/scripts/scenes/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/scripts/scenes/lua/game_scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/assets/scripts/scenes/lua/game_scene.lua -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/scripts/systems/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/sounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/linux/org.antara.gaming.sfml.flappybirds.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/linux/org.antara.gaming.sfml.flappybirds.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/data/osx/sfml_flappy_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/data/osx/sfml_flappy_install.cmake -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/world.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird-scripted/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird-scripted/world.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/musics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/scripts/scenes/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/scripts/systems/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/sounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/linux/org.antara.gaming.sfml.flappybirds.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/linux/org.antara.gaming.sfml.flappybirds.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/data/osx/sfml_flappy_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/data/osx/sfml_flappy_install.cmake -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/game.scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/game.scene.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/game.scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/game.scene.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/intro.scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/intro.scene.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/intro.scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/intro.scene.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/world.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/flappy-bird/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/flappy-bird/world.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/musics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/lib/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/scenes/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/scenes/lua/game_scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/scenes/lua/game_scene.lua -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/scripts/systems/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/sounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/linux/org.antara.gaming.sfml.tictactoe.scripted.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/linux/org.antara.gaming.sfml.tictactoe.scripted.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/linux/org.antara.gaming.sfml.tictactoe.scripted.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/linux/org.antara.gaming.sfml.tictactoe.scripted.desktop -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/data/osx/sfml_tictactoe_scripted_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/data/osx/sfml_tictactoe_scripted_install.cmake -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/world.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe-scripted/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe-scripted/world.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/CMakeLists.txt -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/musics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/scripts/scenes/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/scripts/systems/lua/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/sounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/linux/org.antara.gaming.sfml.tictactoe.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/linux/org.antara.gaming.sfml.tictactoe.appdata.xml -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/linux/org.antara.gaming.sfml.tictactoe.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/linux/org.antara.gaming.sfml.tictactoe.desktop -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/data/osx/sfml_tictactoe_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/data/osx/sfml_tictactoe_install.cmake -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/game.scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/game.scene.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/game.scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/game.scene.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/main.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/tic.tac.toe.components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/tic.tac.toe.components.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/tic.tac.toe.constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/tic.tac.toe.constants.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/tic.tac.toe.factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/tic.tac.toe.factory.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/tic.tac.toe.factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/tic.tac.toe.factory.hpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/world.cpp -------------------------------------------------------------------------------- /messy_playground/sfml/tic-tac-toe/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/messy_playground/sfml/tic-tac-toe/world.hpp -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/animation2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/CMakeLists.txt -------------------------------------------------------------------------------- /modules/animation2d/antara/gaming/animation2d/animation.2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/antara/gaming/animation2d/animation.2d.cpp -------------------------------------------------------------------------------- /modules/animation2d/antara/gaming/animation2d/animation.2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/antara/gaming/animation2d/animation.2d.hpp -------------------------------------------------------------------------------- /modules/animation2d/antara/gaming/animation2d/antara.animation2d.ranged_anim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/antara/gaming/animation2d/antara.animation2d.ranged_anim.hpp -------------------------------------------------------------------------------- /modules/animation2d/antara/gaming/animation2d/component.animation.2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/antara/gaming/animation2d/component.animation.2d.cpp -------------------------------------------------------------------------------- /modules/animation2d/antara/gaming/animation2d/component.animation.2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/animation2d/antara/gaming/animation2d/component.animation.2d.hpp -------------------------------------------------------------------------------- /modules/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/audio/CMakeLists.txt -------------------------------------------------------------------------------- /modules/audio/antara/gaming/audio/audio.status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/audio/antara/gaming/audio/audio.status.hpp -------------------------------------------------------------------------------- /modules/audio/antara/gaming/audio/component.music.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/audio/antara/gaming/audio/component.music.hpp -------------------------------------------------------------------------------- /modules/audio/antara/gaming/audio/component.sound.effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/audio/antara/gaming/audio/component.sound.effect.hpp -------------------------------------------------------------------------------- /modules/blockchain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/CMakeLists.txt -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/antara.blockchain.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/antara.blockchain.tests.cpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.api.cpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.api.hpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.integrations.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.integrations.tests.cpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.system.cpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.system.hpp -------------------------------------------------------------------------------- /modules/blockchain/antara/gaming/blockchain/nspv.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/blockchain/antara/gaming/blockchain/nspv.system.tests.cpp -------------------------------------------------------------------------------- /modules/blockchain/assets/tools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/box2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/box2d/CMakeLists.txt -------------------------------------------------------------------------------- /modules/box2d/antara/gaming/box2d/antara.box2d.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/box2d/antara/gaming/box2d/antara.box2d.system.tests.cpp -------------------------------------------------------------------------------- /modules/box2d/antara/gaming/box2d/antara.box2d.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/box2d/antara/gaming/box2d/antara.box2d.tests.cpp -------------------------------------------------------------------------------- /modules/box2d/antara/gaming/box2d/box2d.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/box2d/antara/gaming/box2d/box2d.system.cpp -------------------------------------------------------------------------------- /modules/box2d/antara/gaming/box2d/box2d.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/box2d/antara/gaming/box2d/box2d.system.hpp -------------------------------------------------------------------------------- /modules/collisions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/collisions/CMakeLists.txt -------------------------------------------------------------------------------- /modules/collisions/antara/gaming/collisions/antara.basic.collisions.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/collisions/antara/gaming/collisions/antara.basic.collisions.system.tests.cpp -------------------------------------------------------------------------------- /modules/collisions/antara/gaming/collisions/antara.collisions.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/collisions/antara/gaming/collisions/antara.collisions.tests.cpp -------------------------------------------------------------------------------- /modules/collisions/antara/gaming/collisions/basic.collision.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/collisions/antara/gaming/collisions/basic.collision.system.cpp -------------------------------------------------------------------------------- /modules/collisions/antara/gaming/collisions/basic.collision.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/collisions/antara/gaming/collisions/basic.collision.system.hpp -------------------------------------------------------------------------------- /modules/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/CMakeLists.txt -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/antara.config.game.maker.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/antara.config.game.maker.tests.cpp -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/antara.config.loading.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/antara.config.loading.tests.cpp -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/antara.config.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/antara.config.tests.cpp -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/config.game.maker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/config.game.maker.cpp -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/config.game.maker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/config.game.maker.hpp -------------------------------------------------------------------------------- /modules/config/antara/gaming/config/config.loading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/config/antara/gaming/config/config.loading.hpp -------------------------------------------------------------------------------- /modules/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/CMakeLists.txt -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/antara.core.real.path.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/antara.core.real.path.tests.cpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/antara.core.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/antara.core.tests.cpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/antara.core.version.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/antara.core.version.tests.cpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/api.scaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/api.scaling.cpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/api.scaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/api.scaling.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/emscripten/api.scaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/emscripten/api.scaling.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/emscripten/real.path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/emscripten/real.path.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/linux/api.scaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/linux/api.scaling.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/linux/real.path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/linux/real.path.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/osx/api.scaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/osx/api.scaling.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/osx/api.scaling.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/osx/api.scaling.mm -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/osx/real.path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/osx/real.path.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/posix/open.url.browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/posix/open.url.browser.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/windows/api.scaling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/windows/api.scaling.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/windows/open.url.browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/windows/open.url.browser.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/details/windows/real.path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/details/windows/real.path.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/open.url.browser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/open.url.browser.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/real.path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/real.path.cpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/real.path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/real.path.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/reflection.entity.registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/reflection.entity.registry.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/safe.refl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/safe.refl.hpp -------------------------------------------------------------------------------- /modules/core/antara/gaming/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/core/antara/gaming/core/version.hpp -------------------------------------------------------------------------------- /modules/ecs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/CMakeLists.txt -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/all.components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/all.components.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/antara.ecs.event.add.base.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/antara.ecs.event.add.base.system.tests.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/antara.ecs.system.manager.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/antara.ecs.system.manager.tests.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/antara.ecs.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/antara.ecs.system.tests.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/antara.ecs.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/antara.ecs.tests.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/base.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/base.system.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/base.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/base.system.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/event.add.base.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/event.add.base.system.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/event.add.base.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/event.add.base.system.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/interpolation.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/interpolation.system.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/interpolation.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/interpolation.system.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/lambda.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/lambda.system.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/lambda.system.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/lambda.system.ipp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.ipp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.manager.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.manager.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.manager.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.manager.ipp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/system.type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/system.type.hpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/virtual.input.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/virtual.input.system.cpp -------------------------------------------------------------------------------- /modules/ecs/antara/gaming/ecs/virtual.input.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/ecs/antara/gaming/ecs/virtual.input.system.hpp -------------------------------------------------------------------------------- /modules/event/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/CMakeLists.txt -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/all.events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/all.events.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.fatal.error.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.fatal.error.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.key.pressed.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.key.pressed.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.key.released.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.key.released.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.mouse.button.pressed.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.mouse.button.pressed.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.mouse.button.released.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.mouse.button.released.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.mouse.moved.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.mouse.moved.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.quit.game.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.quit.game.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/antara.event.type.traits.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/antara.event.type.traits.tests.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/canvas.resized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/canvas.resized.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/event.invoker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/event.invoker.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/fatal.error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/fatal.error.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/fatal.error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/fatal.error.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/fill.image.properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/fill.image.properties.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/get.mouse.position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/get.mouse.position.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/key.pressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/key.pressed.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/key.pressed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/key.pressed.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/key.released.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/key.released.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/key.released.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/key.released.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/load.textures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/load.textures.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.button.pressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.button.pressed.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.button.pressed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.button.pressed.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.button.released.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.button.released.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.button.released.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.button.released.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.moved.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.moved.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/mouse.moved.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/mouse.moved.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/quit.game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/quit.game.cpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/quit.game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/quit.game.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/set.mouse.position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/set.mouse.position.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/start.game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/start.game.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/type.traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/type.traits.hpp -------------------------------------------------------------------------------- /modules/event/antara/gaming/event/window.resized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/event/antara/gaming/event/window.resized.hpp -------------------------------------------------------------------------------- /modules/geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/CMakeLists.txt -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/all.geometry.components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/all.geometry.components.hpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/antara.geometry.component.circle.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/antara.geometry.component.circle.tests.cpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/antara.geometry.component.rectangle.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/antara.geometry.component.rectangle.tests.cpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/antara.geometry.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/antara.geometry.tests.cpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/component.circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/component.circle.cpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/component.circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/component.circle.hpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/component.rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/component.rectangle.cpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/component.rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/component.rectangle.hpp -------------------------------------------------------------------------------- /modules/geometry/antara/gaming/geometry/component.vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/geometry/antara/gaming/geometry/component.vertex.hpp -------------------------------------------------------------------------------- /modules/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /modules/glfw/antara/gaming/glfw/graphic.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/glfw/antara/gaming/glfw/graphic.system.cpp -------------------------------------------------------------------------------- /modules/glfw/antara/gaming/glfw/graphic.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/glfw/antara/gaming/glfw/graphic.system.hpp -------------------------------------------------------------------------------- /modules/glfw/antara/gaming/glfw/input.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/glfw/antara/gaming/glfw/input.system.cpp -------------------------------------------------------------------------------- /modules/glfw/antara/gaming/glfw/input.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/glfw/antara/gaming/glfw/input.system.hpp -------------------------------------------------------------------------------- /modules/graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/CMakeLists.txt -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/all.graphics.components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/all.graphics.components.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/antara.graphics.component.color.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/antara.graphics.component.color.tests.cpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/antara.graphics.component.text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/antara.graphics.component.text.cpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/antara.graphics.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/antara.graphics.tests.cpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.2d.render.texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.2d.render.texture.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.canvas.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.color.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.layer.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.sprite.hpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.text.cpp -------------------------------------------------------------------------------- /modules/graphics/antara/gaming/graphics/component.text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/graphics/antara/gaming/graphics/component.text.hpp -------------------------------------------------------------------------------- /modules/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/input/CMakeLists.txt -------------------------------------------------------------------------------- /modules/input/antara/gaming/input/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/input/antara/gaming/input/keyboard.hpp -------------------------------------------------------------------------------- /modules/input/antara/gaming/input/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/input/antara/gaming/input/mouse.hpp -------------------------------------------------------------------------------- /modules/input/antara/gaming/input/virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/input/antara/gaming/input/virtual.cpp -------------------------------------------------------------------------------- /modules/input/antara/gaming/input/virtual.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/input/antara/gaming/input/virtual.hpp -------------------------------------------------------------------------------- /modules/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/CMakeLists.txt -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/antara.lua.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/antara.lua.system.tests.cpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/antara.lua.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/antara.lua.tests.cpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/array_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/array_utils.lua -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/component.lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/component.lua.cpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/component.lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/component.lua.hpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/details/lua.scripted.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/details/lua.scripted.system.hpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/enum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/enum.lua -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/lua.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/lua.system.cpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/lua.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/lua.system.hpp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/lua.system.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/lua.system.ipp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/lua.system.priv.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/lua.system.priv.ipp -------------------------------------------------------------------------------- /modules/lua/antara/gaming/lua/scenes_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/antara/gaming/lua/scenes_system.lua -------------------------------------------------------------------------------- /modules/lua/assets/lua_assets/scripts/antara.entity.player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/assets/lua_assets/scripts/antara.entity.player.lua -------------------------------------------------------------------------------- /modules/lua/assets/lua_assets/scripts/antara.tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/assets/lua_assets/scripts/antara.tests.lua -------------------------------------------------------------------------------- /modules/lua/assets/lua_assets/scripts/scenes/lua/another_test_scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/assets/lua_assets/scripts/scenes/lua/another_test_scene.lua -------------------------------------------------------------------------------- /modules/lua/assets/lua_assets/scripts/scenes/lua/test_scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/assets/lua_assets/scripts/scenes/lua/test_scene.lua -------------------------------------------------------------------------------- /modules/lua/assets/lua_assets/scripts/systems/pre_update_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/lua/assets/lua_assets/scripts/systems/pre_update_system.lua -------------------------------------------------------------------------------- /modules/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/math/CMakeLists.txt -------------------------------------------------------------------------------- /modules/math/antara/gaming/math/antara.math.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/math/antara/gaming/math/antara.math.tests.cpp -------------------------------------------------------------------------------- /modules/math/antara/gaming/math/antara.math.vector.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/math/antara/gaming/math/antara.math.vector.tests.cpp -------------------------------------------------------------------------------- /modules/math/antara/gaming/math/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/math/antara/gaming/math/utility.hpp -------------------------------------------------------------------------------- /modules/math/antara/gaming/math/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/math/antara/gaming/math/vector.hpp -------------------------------------------------------------------------------- /modules/resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/resources/CMakeLists.txt -------------------------------------------------------------------------------- /modules/resources/antara/gaming/resources/antara.resources.system.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/resources/antara/gaming/resources/antara.resources.system.tests.cpp -------------------------------------------------------------------------------- /modules/resources/antara/gaming/resources/antara.resources.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/resources/antara/gaming/resources/antara.resources.tests.cpp -------------------------------------------------------------------------------- /modules/resources/antara/gaming/resources/resources.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/resources/antara/gaming/resources/resources.system.hpp -------------------------------------------------------------------------------- /modules/resources/assets/fonts/sansation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/resources/assets/fonts/sansation.ttf -------------------------------------------------------------------------------- /modules/scenes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/CMakeLists.txt -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/antara.scenes.base.scene.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/antara.scenes.base.scene.tests.cpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/antara.scenes.manager.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/antara.scenes.manager.tests.cpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/antara.scenes.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/antara.scenes.tests.cpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/base.scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/base.scene.cpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/base.scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/base.scene.hpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/change.scene.event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/change.scene.event.hpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/scene.manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/scene.manager.cpp -------------------------------------------------------------------------------- /modules/scenes/antara/gaming/scenes/scene.manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/scenes/antara/gaming/scenes/scene.manager.hpp -------------------------------------------------------------------------------- /modules/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/graphic.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/graphic.system.cpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/graphic.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/graphic.system.hpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/input.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/input.system.cpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/input.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/input.system.hpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/sdl.opengl.image.loading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/sdl.opengl.image.loading.cpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/sdl.opengl.image.loading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/sdl.opengl.image.loading.hpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/sdl.timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/sdl.timer.hpp -------------------------------------------------------------------------------- /modules/sdl/antara/gaming/sdl/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sdl/antara/gaming/sdl/stb_image.h -------------------------------------------------------------------------------- /modules/sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/audio.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/audio.system.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/audio.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/audio.system.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/component.audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/component.audio.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/component.drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/component.drawable.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/event.play.sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/event.play.sound.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/event.play.sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/event.play.sound.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/graphic.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/graphic.system.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/graphic.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/graphic.system.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/input.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/input.system.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/input.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/input.system.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/komodo.intro.scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/komodo.intro.scene.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/komodo.intro.scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/komodo.intro.scene.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/lua.system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/lua.system.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/lua.system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/lua.system.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/resources.loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/resources.loader.hpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/resources.manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/resources.manager.cpp -------------------------------------------------------------------------------- /modules/sfml/antara/gaming/sfml/resources.manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/antara/gaming/sfml/resources.manager.hpp -------------------------------------------------------------------------------- /modules/sfml/assets/sounds/intro1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/assets/sounds/intro1.wav -------------------------------------------------------------------------------- /modules/sfml/assets/sounds/intro2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/assets/sounds/intro2.wav -------------------------------------------------------------------------------- /modules/sfml/assets/textures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/sfml/assets/textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/assets/textures/logo.png -------------------------------------------------------------------------------- /modules/sfml/assets/textures/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/sfml/assets/textures/name.png -------------------------------------------------------------------------------- /modules/timer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/timer/antara/gaming/timer/antara.timer.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/antara/gaming/timer/antara.timer.tests.cpp -------------------------------------------------------------------------------- /modules/timer/antara/gaming/timer/antara.timer.time.step.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/antara/gaming/timer/antara.timer.time.step.tests.cpp -------------------------------------------------------------------------------- /modules/timer/antara/gaming/timer/fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/antara/gaming/timer/fps.hpp -------------------------------------------------------------------------------- /modules/timer/antara/gaming/timer/time.step.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/antara/gaming/timer/time.step.cpp -------------------------------------------------------------------------------- /modules/timer/antara/gaming/timer/time.step.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/timer/antara/gaming/timer/time.step.hpp -------------------------------------------------------------------------------- /modules/transform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/CMakeLists.txt -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/all.transform.components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/all.transform.components.hpp -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/antara.transform.component.position.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/antara.transform.component.position.tests.cpp -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/antara.transform.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/antara.transform.tests.cpp -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/component.position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/component.position.cpp -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/component.position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/component.position.hpp -------------------------------------------------------------------------------- /modules/transform/antara/gaming/transform/component.properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/transform/antara/gaming/transform/component.properties.hpp -------------------------------------------------------------------------------- /modules/world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/world/CMakeLists.txt -------------------------------------------------------------------------------- /modules/world/antara/gaming/world/antara.world.app.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/world/antara/gaming/world/antara.world.app.tests.cpp -------------------------------------------------------------------------------- /modules/world/antara/gaming/world/antara.world.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/world/antara/gaming/world/antara.world.tests.cpp -------------------------------------------------------------------------------- /modules/world/antara/gaming/world/world.app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/world/antara/gaming/world/world.app.cpp -------------------------------------------------------------------------------- /modules/world/antara/gaming/world/world.app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/modules/world/antara/gaming/world/world.app.hpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_1/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_1/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_2/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_2/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_3/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_3/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_4/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_4/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_5/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_5/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_6/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_6/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_7/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_7/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/assets/textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/assets/textures/player.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_8/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_8/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/background.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_fall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_fall.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_hurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_hurt.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/dragon_jump.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/pipe_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/pipe_body.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/pipe_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/assets/textures/pipe_cap.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/org.antara.gaming.sfml.flappybird.appdata.xml -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/org.antara.gaming.sfml.flappybird.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/linux/org.antara.gaming.sfml.flappybird.desktop -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/sfml_flappybird_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/data/osx/sfml_flappybird_install.cmake -------------------------------------------------------------------------------- /tutorials/flappy-bird/step_with_komodo_nice_assets/flappy-bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/flappy-bird/step_with_komodo_nice_assets/flappy-bird.cpp -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_1/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_1/tic-tac-toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_1/tic-tac-toe.cpp -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_2/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_2/tic-tac-toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_2/tic-tac-toe.cpp -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_3/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_3/tic-tac-toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_3/tic-tac-toe.cpp -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_4/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/tic-tac-toe/step_4/tic-tac-toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/tic-tac-toe/step_4/tic-tac-toe.cpp -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/config/game.config.maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/config/game.config.maker.json -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/musics/ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/musics/ambient.ogg -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/musics/breath.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/musics/breath.ogg -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/sounds/walk1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/sounds/walk1.wav -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/sounds/walk2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/sounds/walk2.wav -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/sounds/walk3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/sounds/walk3.wav -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/sounds/walk4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/sounds/walk4.wav -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/compass.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/compass_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/compass_arrow.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/compass_inner_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/compass_inner_shadow.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/compass_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/compass_ring.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/csgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/csgo.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/ground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/ground.jpg -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/assets/textures/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/assets/textures/portal.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/linux/komodo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/linux/komodo_icon.png -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/linux/org.antara.gaming.sfml.wolf3d.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/linux/org.antara.gaming.sfml.wolf3d.appdata.xml -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/linux/org.antara.gaming.sfml.wolf3d.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/linux/org.antara.gaming.sfml.wolf3d.desktop -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/osx/kmd_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/osx/kmd_logo.icns -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/data/osx/sfml_wolf3d_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/data/osx/sfml_wolf3d_install.cmake -------------------------------------------------------------------------------- /tutorials/wolf-3d/final_step/wolf-3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KomodoPlatform/antara-gaming-sdk/HEAD/tutorials/wolf-3d/final_step/wolf-3d.cpp --------------------------------------------------------------------------------