├── .conan ├── linux │ └── conanfile.txt ├── osx │ └── conanfile.txt ├── remotes │ └── remotes.txt └── windows │ └── conanfile.txt ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── config.yml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CMakeLists.txt ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.md ├── README.md ├── VERSION.md ├── appveyor.yml ├── client ├── CMakeLists.txt ├── assets │ └── config │ │ └── game_config.json ├── data │ ├── linux │ │ ├── nephtys_icon.png │ │ ├── org.nephtys.client.appdata.xml │ │ └── org.nephtys.client.desktop │ └── osx │ │ └── nephtys_launcher.icns ├── include │ └── nephtys │ │ └── client │ │ ├── config │ │ ├── config.hpp │ │ └── config.test.hpp │ │ ├── maps │ │ └── isometric.map.hpp │ │ ├── scenes │ │ └── test_scene.hpp │ │ └── world │ │ ├── world.hpp │ │ └── world.test.hpp ├── src │ ├── main.cpp │ └── maps │ │ ├── isometric.map.cpp │ │ └── isometric.map.test.cpp └── test │ └── test.client.cpp ├── cmake ├── MacOSXBundleInfo.plist.in ├── nephtys.cmake ├── targets │ └── CMakeLists.txt └── version.hpp.in ├── common ├── CMakeLists.txt ├── common │ ├── CMakeLists.txt │ ├── include │ │ └── nephtys │ │ │ ├── components │ │ │ └── layer.hpp │ │ │ ├── event │ │ │ └── quit_app.hpp │ │ │ ├── resources │ │ │ ├── details │ │ │ │ ├── linux │ │ │ │ │ └── real_path.hpp │ │ │ │ ├── osx │ │ │ │ │ └── real_path.hpp │ │ │ │ └── windows │ │ │ │ │ └── real_path.hpp │ │ │ └── real_path.hpp │ │ │ ├── scenes │ │ │ ├── scene.hpp │ │ │ └── scenes.manager.hpp │ │ │ ├── strong_types │ │ │ ├── delta.time.hpp │ │ │ ├── exit_code.hpp │ │ │ └── size.hpp │ │ │ ├── timer │ │ │ ├── fps.hpp │ │ │ └── timestep.hpp │ │ │ ├── utils │ │ │ ├── config.hpp │ │ │ └── pretty_function.hpp │ │ │ ├── version.hpp │ │ │ └── window │ │ │ └── win.cfg.hpp │ ├── src │ │ ├── resources │ │ │ ├── details │ │ │ │ ├── linux │ │ │ │ │ ├── real_path.cpp │ │ │ │ │ └── real_path.test.cpp │ │ │ │ ├── osx │ │ │ │ │ ├── real_path.cpp │ │ │ │ │ └── real_path.test.cpp │ │ │ │ └── windows │ │ │ │ │ ├── real_path.cpp │ │ │ │ │ └── real_path.test.cpp │ │ │ ├── real_path.cpp │ │ │ └── real_path.test.cpp │ │ ├── scenes │ │ │ ├── scenes.manager.cpp │ │ │ └── scenes.manager.test.cpp │ │ ├── timer │ │ │ ├── timestep.cpp │ │ │ └── timestep.test.cpp │ │ └── version.test.cpp │ └── test │ │ └── test.common.cpp └── sfml │ ├── CMakeLists.txt │ ├── include │ └── nephtys │ │ ├── graphics │ │ ├── components │ │ │ └── sfml.drawable.hpp │ │ └── sfml.graphics.hpp │ │ └── input │ │ └── sfml.input.hpp │ ├── src │ ├── graphics │ │ ├── sfml.graphics.cpp │ │ └── sfml.graphics.test.cpp │ └── input │ │ ├── sfml.input.cpp │ │ └── sfml.input.test.cpp │ └── test │ └── test.sfml.cpp ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── Doxyfile │ ├── api │ ├── api_index.rst │ ├── nephtys-client-config.rst │ ├── nephtys-window-config.rst │ └── utils.rst │ ├── conf.py │ └── index.rst ├── launcher ├── CMakeLists.txt ├── data │ └── osx │ │ ├── Packaging_CMakeDMGBackground.tif │ │ ├── Packaging_CMakeDMGSetup.scpt │ │ ├── nephtys_launcher.icns │ │ └── nephtys_launcher_install.cmake └── src │ └── main.cpp ├── lgtm.yml ├── scripts ├── bintray.json ├── build_doc.sh ├── clean_build_linux.sh ├── deploy_linux.sh ├── deploy_osx.sh ├── travis_build.sh └── travis_install.sh ├── server ├── CMakeLists.txt ├── data │ └── linux │ │ ├── nephtys_icon.png │ │ ├── org.nephtys.server.appdata.xml │ │ └── org.nephtys.server.desktop └── src │ └── main.cpp └── vendor └── loguru ├── CMakeLists.txt ├── loguru.cpp └── loguru.hpp /.conan/linux/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.conan/linux/conanfile.txt -------------------------------------------------------------------------------- /.conan/osx/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.conan/osx/conanfile.txt -------------------------------------------------------------------------------- /.conan/remotes/remotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.conan/remotes/remotes.txt -------------------------------------------------------------------------------- /.conan/windows/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.conan/windows/conanfile.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | todo: 2 | exclude: vendor/* -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/appveyor.yml -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/assets/config/game_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/assets/config/game_config.json -------------------------------------------------------------------------------- /client/data/linux/nephtys_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/data/linux/nephtys_icon.png -------------------------------------------------------------------------------- /client/data/linux/org.nephtys.client.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/data/linux/org.nephtys.client.appdata.xml -------------------------------------------------------------------------------- /client/data/linux/org.nephtys.client.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/data/linux/org.nephtys.client.desktop -------------------------------------------------------------------------------- /client/data/osx/nephtys_launcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/data/osx/nephtys_launcher.icns -------------------------------------------------------------------------------- /client/include/nephtys/client/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/config/config.hpp -------------------------------------------------------------------------------- /client/include/nephtys/client/config/config.test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/config/config.test.hpp -------------------------------------------------------------------------------- /client/include/nephtys/client/maps/isometric.map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/maps/isometric.map.hpp -------------------------------------------------------------------------------- /client/include/nephtys/client/scenes/test_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/scenes/test_scene.hpp -------------------------------------------------------------------------------- /client/include/nephtys/client/world/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/world/world.hpp -------------------------------------------------------------------------------- /client/include/nephtys/client/world/world.test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/include/nephtys/client/world/world.test.hpp -------------------------------------------------------------------------------- /client/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/src/main.cpp -------------------------------------------------------------------------------- /client/src/maps/isometric.map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/src/maps/isometric.map.cpp -------------------------------------------------------------------------------- /client/src/maps/isometric.map.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/src/maps/isometric.map.test.cpp -------------------------------------------------------------------------------- /client/test/test.client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/client/test/test.client.cpp -------------------------------------------------------------------------------- /cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /cmake/nephtys.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/cmake/nephtys.cmake -------------------------------------------------------------------------------- /cmake/targets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/cmake/targets/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/cmake/version.hpp.in -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/common/include/nephtys/components/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/components/layer.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/event/quit_app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/event/quit_app.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/resources/details/linux/real_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/resources/details/linux/real_path.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/resources/details/osx/real_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/resources/details/osx/real_path.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/resources/details/windows/real_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/resources/details/windows/real_path.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/resources/real_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/resources/real_path.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/scenes/scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/scenes/scene.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/scenes/scenes.manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/scenes/scenes.manager.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/strong_types/delta.time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/strong_types/delta.time.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/strong_types/exit_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/strong_types/exit_code.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/strong_types/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/strong_types/size.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/timer/fps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/timer/fps.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/timer/timestep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/timer/timestep.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/utils/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/utils/config.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/utils/pretty_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/utils/pretty_function.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/version.hpp -------------------------------------------------------------------------------- /common/common/include/nephtys/window/win.cfg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/include/nephtys/window/win.cfg.hpp -------------------------------------------------------------------------------- /common/common/src/resources/details/linux/real_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/linux/real_path.cpp -------------------------------------------------------------------------------- /common/common/src/resources/details/linux/real_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/linux/real_path.test.cpp -------------------------------------------------------------------------------- /common/common/src/resources/details/osx/real_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/osx/real_path.cpp -------------------------------------------------------------------------------- /common/common/src/resources/details/osx/real_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/osx/real_path.test.cpp -------------------------------------------------------------------------------- /common/common/src/resources/details/windows/real_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/windows/real_path.cpp -------------------------------------------------------------------------------- /common/common/src/resources/details/windows/real_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/details/windows/real_path.test.cpp -------------------------------------------------------------------------------- /common/common/src/resources/real_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/real_path.cpp -------------------------------------------------------------------------------- /common/common/src/resources/real_path.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/resources/real_path.test.cpp -------------------------------------------------------------------------------- /common/common/src/scenes/scenes.manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/scenes/scenes.manager.cpp -------------------------------------------------------------------------------- /common/common/src/scenes/scenes.manager.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/scenes/scenes.manager.test.cpp -------------------------------------------------------------------------------- /common/common/src/timer/timestep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/timer/timestep.cpp -------------------------------------------------------------------------------- /common/common/src/timer/timestep.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/timer/timestep.test.cpp -------------------------------------------------------------------------------- /common/common/src/version.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/common/src/version.test.cpp -------------------------------------------------------------------------------- /common/common/test/test.common.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by milerius on 12/04/19. 3 | // 4 | 5 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 6 | #include 7 | -------------------------------------------------------------------------------- /common/sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/CMakeLists.txt -------------------------------------------------------------------------------- /common/sfml/include/nephtys/graphics/components/sfml.drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/include/nephtys/graphics/components/sfml.drawable.hpp -------------------------------------------------------------------------------- /common/sfml/include/nephtys/graphics/sfml.graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/include/nephtys/graphics/sfml.graphics.hpp -------------------------------------------------------------------------------- /common/sfml/include/nephtys/input/sfml.input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/include/nephtys/input/sfml.input.hpp -------------------------------------------------------------------------------- /common/sfml/src/graphics/sfml.graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/src/graphics/sfml.graphics.cpp -------------------------------------------------------------------------------- /common/sfml/src/graphics/sfml.graphics.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/src/graphics/sfml.graphics.test.cpp -------------------------------------------------------------------------------- /common/sfml/src/input/sfml.input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/src/input/sfml.input.cpp -------------------------------------------------------------------------------- /common/sfml/src/input/sfml.input.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/common/sfml/src/input/sfml.input.test.cpp -------------------------------------------------------------------------------- /common/sfml/test/test.sfml.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by milerius on 05/04/19. 3 | // 4 | 5 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 6 | 7 | #include -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=2.0 2 | breathe -------------------------------------------------------------------------------- /docs/source/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/Doxyfile -------------------------------------------------------------------------------- /docs/source/api/api_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/api/api_index.rst -------------------------------------------------------------------------------- /docs/source/api/nephtys-client-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/api/nephtys-client-config.rst -------------------------------------------------------------------------------- /docs/source/api/nephtys-window-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/api/nephtys-window-config.rst -------------------------------------------------------------------------------- /docs/source/api/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/api/utils.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/data/osx/Packaging_CMakeDMGBackground.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/data/osx/Packaging_CMakeDMGBackground.tif -------------------------------------------------------------------------------- /launcher/data/osx/Packaging_CMakeDMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/data/osx/Packaging_CMakeDMGSetup.scpt -------------------------------------------------------------------------------- /launcher/data/osx/nephtys_launcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/data/osx/nephtys_launcher.icns -------------------------------------------------------------------------------- /launcher/data/osx/nephtys_launcher_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/data/osx/nephtys_launcher_install.cmake -------------------------------------------------------------------------------- /launcher/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/launcher/src/main.cpp -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/lgtm.yml -------------------------------------------------------------------------------- /scripts/bintray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/bintray.json -------------------------------------------------------------------------------- /scripts/build_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/build_doc.sh -------------------------------------------------------------------------------- /scripts/clean_build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/clean_build_linux.sh -------------------------------------------------------------------------------- /scripts/deploy_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/deploy_linux.sh -------------------------------------------------------------------------------- /scripts/deploy_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/deploy_osx.sh -------------------------------------------------------------------------------- /scripts/travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/travis_build.sh -------------------------------------------------------------------------------- /scripts/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/scripts/travis_install.sh -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/data/linux/nephtys_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/server/data/linux/nephtys_icon.png -------------------------------------------------------------------------------- /server/data/linux/org.nephtys.server.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/server/data/linux/org.nephtys.server.appdata.xml -------------------------------------------------------------------------------- /server/data/linux/org.nephtys.server.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/server/data/linux/org.nephtys.server.desktop -------------------------------------------------------------------------------- /server/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "Hello world\n"; 6 | return 0; 7 | } -------------------------------------------------------------------------------- /vendor/loguru/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/vendor/loguru/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/loguru/loguru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/vendor/loguru/loguru.cpp -------------------------------------------------------------------------------- /vendor/loguru/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milerius/nephtys/HEAD/vendor/loguru/loguru.hpp --------------------------------------------------------------------------------