├── .clang-format ├── .github └── FUNDING.yml ├── .gitignore ├── .snapcraft.yaml ├── AppImageBuilder.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── cmake ├── Modules │ ├── FindSDL2.cmake │ ├── FindSDL2_image.cmake │ └── FindSDL2_mixer.cmake ├── switch.toolchain.cmake └── switch.tools.cmake ├── data ├── Face.pbm ├── Face_0.pbm ├── Face_1.pbm ├── Face_2.pbm ├── StageMeta │ ├── Ballo2.json │ ├── CentW.json │ ├── Chako.json │ ├── Clock.json │ ├── Comu.json │ ├── Cthu.json │ ├── Cthu2.json │ ├── Curly.json │ ├── CurlyS.json │ ├── Dark.json │ ├── Drain.json │ ├── EgEnd1.json │ ├── EgEnd2.json │ ├── EggR.json │ ├── EggR2.json │ ├── EggX.json │ ├── EggX2.json │ ├── Frog.json │ ├── Gard.json │ ├── Hell1.json │ ├── Hell4.json │ ├── Hell42.json │ ├── Itoh.json │ ├── Jail1.json │ ├── Jail2.json │ ├── Jenka1.json │ ├── Jenka2.json │ ├── Little.json │ ├── Lounge.json │ ├── Malco.json │ ├── Mapi.json │ ├── MazeA.json │ ├── MazeB.json │ ├── MazeD.json │ ├── MazeH.json │ ├── MazeI.json │ ├── MazeO.json │ ├── MazeS.json │ ├── Momo.json │ ├── Pens1.json │ ├── Pens2.json │ ├── Pixel.json │ ├── Plant.json │ ├── Pole.json │ ├── Prefa1.json │ ├── Prefa2.json │ ├── Shelt.json │ ├── Start.json │ ├── Statue.json │ ├── WeedB.json │ ├── WeedD.json │ ├── WeedS.json │ ├── e_Malc.json │ └── e_Maze.json ├── bkFog480fix.pbm ├── bkHellish.pbm ├── bkHellish480fix.pbm ├── bkLight.pbm ├── bkLight480fix.pbm ├── bkMoon480fix.pbm ├── bkSunset.pbm ├── bkSunset480fix.pbm ├── endpic │ ├── credit01m.bmp │ ├── credit02m.bmp │ └── credit03m.bmp ├── font_1.fnt ├── font_1_0.png ├── font_2.fnt ├── font_2_0.png ├── font_3.fnt ├── font_3_0.png ├── font_3_1.png ├── font_4.fnt ├── font_4_0.png ├── font_5.fnt ├── font_5_0.png ├── music.json ├── music_dirs.json ├── spot.png ├── sprites.sif ├── system.json └── tilekey.dat ├── deps ├── json.hpp ├── spdlog │ ├── async.h │ ├── async_logger.h │ ├── common.h │ ├── details │ │ ├── async_logger_impl.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg.h │ │ ├── logger_impl.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os.h │ │ ├── pattern_formatter.h │ │ ├── periodic_worker.h │ │ ├── registry.h │ │ └── thread_pool.h │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── LICENSE.rst │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── time.h │ │ ├── fmt.h │ │ └── ostr.h │ ├── formatter.h │ ├── logger.h │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink.h │ │ ├── basic_file_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── rotating_file_sink.h │ │ ├── sink.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ └── wincolor_sink.h │ ├── spdlog.h │ ├── tweakme.h │ └── version.h ├── utf8.h └── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h ├── nx.sln ├── org.nxengine.nxengine_evo.json ├── platform ├── osx │ ├── Info.plist │ ├── bg.png │ └── icons.icns ├── switch │ └── icon.jpg ├── vita │ └── sce_sys │ │ ├── icon0.png │ │ └── livearea │ │ └── contents │ │ ├── bg.png │ │ ├── startup.png │ │ └── template.xml ├── win32 │ ├── ext │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_image.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mixer.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ ├── close_code.h │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pnglibconf.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ ├── lib │ │ │ └── x64 │ │ │ │ ├── SDL2.lib │ │ │ │ ├── SDL2_image.lib │ │ │ │ ├── SDL2_mixer.lib │ │ │ │ ├── SDL2main.lib │ │ │ │ ├── SDL2test.lib │ │ │ │ └── libpng16.lib │ │ └── runtime │ │ │ └── x64 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2_image.dll │ │ │ ├── SDL2_mixer.dll │ │ │ ├── libFLAC-8.dll │ │ │ ├── libjpeg-9.dll │ │ │ ├── libmodplug-1.dll │ │ │ ├── libmpg123-0.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libopus-0.dll │ │ │ ├── libopusfile-0.dll │ │ │ ├── libpng16-16.dll │ │ │ ├── libpng16.dll │ │ │ ├── libtiff-5.dll │ │ │ ├── libvorbis-0.dll │ │ │ ├── libvorbisfile-3.dll │ │ │ ├── libwebp-7.dll │ │ │ └── zlib1.dll │ ├── extract │ │ ├── extract.vcxproj │ │ └── extract.vcxproj.filters │ ├── nx │ │ ├── nx.aps │ │ ├── nx.rc │ │ ├── nx.vcxproj │ │ ├── nx.vcxproj.filters │ │ ├── nx.vcxproj.user │ │ └── resource.h │ └── nx64x64.ico └── xdg │ ├── appdata-add-version.xslt │ ├── org.nxengine.nxengine_evo.appdata.xml │ ├── org.nxengine.nxengine_evo.desktop │ └── org.nxengine.nxengine_evo.png ├── screenshot.png └── src ├── ObjManager.cpp ├── ObjManager.h ├── ResourceManager.cpp ├── ResourceManager.h ├── Singleton.h ├── TextBox ├── ItemImage.cpp ├── ItemImage.h ├── SaveSelect.cpp ├── SaveSelect.h ├── StageSelect.cpp ├── StageSelect.h ├── TextBox.cpp ├── TextBox.h ├── YesNoPrompt.cpp └── YesNoPrompt.h ├── Utils ├── Common.h ├── Logger.cpp └── Logger.h ├── ai ├── IrregularBBox.cpp ├── IrregularBBox.h ├── ai.cpp ├── ai.h ├── almond │ ├── almond.cpp │ └── almond.h ├── balrog_common.cpp ├── balrog_common.h ├── boss │ ├── balfrog.cpp │ ├── balfrog.h │ ├── ballos.cpp │ ├── ballos.h │ ├── core.cpp │ ├── core.h │ ├── heavypress.cpp │ ├── heavypress.h │ ├── ironhead.cpp │ ├── ironhead.h │ ├── omega.cpp │ ├── omega.h │ ├── sisters.cpp │ ├── sisters.h │ ├── undead_core.cpp │ ├── undead_core.h │ ├── x.cpp │ └── x.h ├── egg │ ├── egg.cpp │ ├── egg.h │ ├── egg2.cpp │ ├── egg2.h │ ├── igor.cpp │ └── igor.h ├── final_battle │ ├── balcony.cpp │ ├── balcony.h │ ├── doctor.cpp │ ├── doctor.h │ ├── doctor_common.cpp │ ├── doctor_common.h │ ├── doctor_frenzied.cpp │ ├── doctor_frenzied.h │ ├── final_misc.cpp │ ├── final_misc.h │ ├── misery.cpp │ ├── misery.h │ ├── sidekicks.cpp │ └── sidekicks.h ├── first_cave │ ├── first_cave.cpp │ └── first_cave.h ├── hell │ ├── ballos_misc.cpp │ ├── ballos_misc.h │ ├── ballos_priest.cpp │ ├── ballos_priest.h │ ├── hell.cpp │ └── hell.h ├── last_cave │ ├── last_cave.cpp │ └── last_cave.h ├── maze │ ├── balrog_boss_missiles.cpp │ ├── balrog_boss_missiles.h │ ├── critter_purple.cpp │ ├── critter_purple.h │ ├── gaudi.cpp │ ├── gaudi.h │ ├── labyrinth_m.cpp │ ├── labyrinth_m.h │ ├── maze.cpp │ ├── maze.h │ ├── pooh_black.cpp │ └── pooh_black.h ├── npc │ ├── balrog.cpp │ ├── balrog.h │ ├── curly.cpp │ ├── curly.h │ ├── curly_ai.cpp │ ├── curly_ai.h │ ├── misery.cpp │ ├── misery.h │ ├── npcguest.cpp │ ├── npcguest.h │ ├── npcplayer.cpp │ ├── npcplayer.h │ ├── npcregu.cpp │ └── npcregu.h ├── oside │ ├── oside.cpp │ └── oside.h ├── plantation │ ├── plantation.cpp │ └── plantation.h ├── sand │ ├── curly_boss.cpp │ ├── curly_boss.h │ ├── puppy.cpp │ ├── puppy.h │ ├── sand.cpp │ ├── sand.h │ ├── toroko_frenzied.cpp │ └── toroko_frenzied.h ├── stdai.h ├── sym │ ├── smoke.cpp │ ├── smoke.h │ ├── sym.cpp │ └── sym.h ├── village │ ├── balrog_boss_running.cpp │ ├── balrog_boss_running.h │ ├── ma_pignon.cpp │ ├── ma_pignon.h │ ├── village.cpp │ └── village.h ├── weapons │ ├── blade.cpp │ ├── blade.h │ ├── bubbler.cpp │ ├── bubbler.h │ ├── fireball.cpp │ ├── fireball.h │ ├── missile.cpp │ ├── missile.h │ ├── nemesis.cpp │ ├── nemesis.h │ ├── polar_mgun.cpp │ ├── polar_mgun.h │ ├── snake.cpp │ ├── snake.h │ ├── spur.cpp │ ├── spur.h │ ├── weapons.cpp │ ├── weapons.h │ ├── whimstar.cpp │ └── whimstar.h └── weed │ ├── balrog_boss_flying.cpp │ ├── balrog_boss_flying.h │ ├── frenzied_mimiga.cpp │ ├── frenzied_mimiga.h │ ├── weed.cpp │ └── weed.h ├── autogen ├── AssignSprites.cpp ├── AssignSprites.h ├── objnames.h └── sprites.h ├── caret.cpp ├── caret.h ├── common ├── InitList.cpp ├── InitList.h ├── basics.h ├── bufio.h ├── glob.cpp ├── glob.h ├── llist.h ├── misc.cpp ├── misc.h ├── myfnmatch.cpp └── myfnmatch.h ├── config.h ├── console.cpp ├── console.h ├── debug.cpp ├── debug.h ├── endgame ├── CredReader.cpp ├── CredReader.h ├── credits.cpp ├── credits.h ├── island.cpp ├── island.h ├── misc.cpp └── misc.h ├── extract ├── crc.cpp ├── crc.h ├── extractfiles.cpp ├── extractfiles.h ├── extractpxt.cpp ├── extractpxt.h ├── extractstages.cpp ├── extractstages.h └── main.cpp ├── floattext.cpp ├── floattext.h ├── game.cpp ├── game.h ├── graphics ├── Font.cpp ├── Font.h ├── Renderer.cpp ├── Renderer.h ├── Sprites.cpp ├── Sprites.h ├── Surface.cpp ├── Surface.h ├── Tileset.cpp ├── Tileset.h ├── nx_icon.h ├── pngfuncs.cpp ├── pngfuncs.h ├── types.h ├── zoom.cpp └── zoom.h ├── i18n ├── minibidi.cpp ├── minibidi.h ├── translate.cpp └── translate.h ├── input.cpp ├── input.h ├── intro ├── intro.cpp ├── intro.h ├── title.cpp └── title.h ├── inventory.cpp ├── inventory.h ├── main.cpp ├── map.cpp ├── map.h ├── map_system.cpp ├── map_system.h ├── maprecord.h ├── niku.cpp ├── niku.h ├── nx.h ├── object.cpp ├── object.h ├── p_arms.cpp ├── p_arms.h ├── pause ├── dialog.cpp ├── dialog.h ├── message.cpp ├── message.h ├── mods.cpp ├── mods.h ├── objects.cpp ├── objects.h ├── options.cpp ├── options.h ├── pause.cpp └── pause.h ├── player.cpp ├── player.h ├── playerstats.cpp ├── playerstats.h ├── profile.cpp ├── profile.h ├── screeneffect.cpp ├── screeneffect.h ├── settings.cpp ├── settings.h ├── siflib ├── sectSprites.cpp ├── sectSprites.h ├── sectStringArray.cpp ├── sectStringArray.h ├── sif.cpp ├── sif.h ├── sifloader.cpp └── sifloader.h ├── slope.cpp ├── slope.h ├── sound ├── Ogg.cpp ├── Ogg.h ├── Organya.cpp ├── Organya.h ├── Pixtone.cpp ├── Pixtone.h ├── SoundManager.cpp └── SoundManager.h ├── stageboss.cpp ├── stageboss.h ├── stagedata.cpp ├── stagedata.h ├── statusbar.cpp ├── statusbar.h ├── trig.cpp ├── trig.h ├── tsc.cpp ├── tsc.h └── version.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://paypal.me/sarcasticat 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/.gitignore -------------------------------------------------------------------------------- /.snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/.snapcraft.yaml -------------------------------------------------------------------------------- /AppImageBuilder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/AppImageBuilder.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/cmake/Modules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/cmake/Modules/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/switch.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/cmake/switch.toolchain.cmake -------------------------------------------------------------------------------- /cmake/switch.tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/cmake/switch.tools.cmake -------------------------------------------------------------------------------- /data/Face.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/Face.pbm -------------------------------------------------------------------------------- /data/Face_0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/Face_0.pbm -------------------------------------------------------------------------------- /data/Face_1.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/Face_1.pbm -------------------------------------------------------------------------------- /data/Face_2.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/Face_2.pbm -------------------------------------------------------------------------------- /data/StageMeta/Ballo2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 109 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/CentW.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Chako.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Clock.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1, 2, 17, 18 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Comu.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Cthu.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Cthu2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Curly.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1, 2, 17, 18 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/CurlyS.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 96 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Drain.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 32, 33, 48, 49 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EgEnd1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EgEnd2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EggR.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EggR2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EggX.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/EggX2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Frog.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 35, 36, 51, 52 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Gard.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1, 2, 17, 18 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Hell1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 19, 20, 35, 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Hell4.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Hell42.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Itoh.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Jail1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 3, 4, 19, 20 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Jail2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Jenka1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Jenka2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Little.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Lounge.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 3, 4, 19, 20 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Malco.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Mapi.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 32, 33, 48, 49 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeA.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeB.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 1, 2, 17, 18 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeD.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 3, 4, 19, 20 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeH.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeI.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeO.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/MazeS.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 3, 4, 19, 20 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Momo.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 3, 4, 19, 20 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Pens1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Pens2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Pixel.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 35, 36, 51, 52 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Pole.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 32, 33, 48, 49 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Prefa1.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Prefa2.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Shelt.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Start.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 32, 33, 48, 49 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/Statue.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 16, 17, 32, 33 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/WeedB.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 36 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/WeedD.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 48 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/WeedS.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/e_Malc.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 5 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/StageMeta/e_Maze.json: -------------------------------------------------------------------------------- 1 | { 2 | "out-of-bounds": [ 23 ] 3 | } 4 | 5 | -------------------------------------------------------------------------------- /data/bkFog480fix.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkFog480fix.pbm -------------------------------------------------------------------------------- /data/bkHellish.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkHellish.pbm -------------------------------------------------------------------------------- /data/bkHellish480fix.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkHellish480fix.pbm -------------------------------------------------------------------------------- /data/bkLight.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkLight.pbm -------------------------------------------------------------------------------- /data/bkLight480fix.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkLight480fix.pbm -------------------------------------------------------------------------------- /data/bkMoon480fix.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkMoon480fix.pbm -------------------------------------------------------------------------------- /data/bkSunset.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkSunset.pbm -------------------------------------------------------------------------------- /data/bkSunset480fix.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/bkSunset480fix.pbm -------------------------------------------------------------------------------- /data/endpic/credit01m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/endpic/credit01m.bmp -------------------------------------------------------------------------------- /data/endpic/credit02m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/endpic/credit02m.bmp -------------------------------------------------------------------------------- /data/endpic/credit03m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/endpic/credit03m.bmp -------------------------------------------------------------------------------- /data/font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_1.fnt -------------------------------------------------------------------------------- /data/font_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_1_0.png -------------------------------------------------------------------------------- /data/font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_2.fnt -------------------------------------------------------------------------------- /data/font_2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_2_0.png -------------------------------------------------------------------------------- /data/font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_3.fnt -------------------------------------------------------------------------------- /data/font_3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_3_0.png -------------------------------------------------------------------------------- /data/font_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_3_1.png -------------------------------------------------------------------------------- /data/font_4.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_4.fnt -------------------------------------------------------------------------------- /data/font_4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_4_0.png -------------------------------------------------------------------------------- /data/font_5.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_5.fnt -------------------------------------------------------------------------------- /data/font_5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/font_5_0.png -------------------------------------------------------------------------------- /data/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/music.json -------------------------------------------------------------------------------- /data/music_dirs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/music_dirs.json -------------------------------------------------------------------------------- /data/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/spot.png -------------------------------------------------------------------------------- /data/sprites.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/sprites.sif -------------------------------------------------------------------------------- /data/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/system.json -------------------------------------------------------------------------------- /data/tilekey.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/data/tilekey.dat -------------------------------------------------------------------------------- /deps/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/json.hpp -------------------------------------------------------------------------------- /deps/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/async.h -------------------------------------------------------------------------------- /deps/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/async_logger.h -------------------------------------------------------------------------------- /deps/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/common.h -------------------------------------------------------------------------------- /deps/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /deps/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /deps/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /deps/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /deps/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /deps/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /deps/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /deps/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /deps/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /deps/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/os.h -------------------------------------------------------------------------------- /deps/spdlog/details/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/pattern_formatter.h -------------------------------------------------------------------------------- /deps/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /deps/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/registry.h -------------------------------------------------------------------------------- /deps/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/LICENSE.rst -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /deps/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /deps/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/formatter.h -------------------------------------------------------------------------------- /deps/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/logger.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /deps/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /deps/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/spdlog.h -------------------------------------------------------------------------------- /deps/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/tweakme.h -------------------------------------------------------------------------------- /deps/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/spdlog/version.h -------------------------------------------------------------------------------- /deps/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/utf8.h -------------------------------------------------------------------------------- /deps/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/utf8/checked.h -------------------------------------------------------------------------------- /deps/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/utf8/core.h -------------------------------------------------------------------------------- /deps/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/deps/utf8/unchecked.h -------------------------------------------------------------------------------- /nx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/nx.sln -------------------------------------------------------------------------------- /org.nxengine.nxengine_evo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/org.nxengine.nxengine_evo.json -------------------------------------------------------------------------------- /platform/osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/osx/Info.plist -------------------------------------------------------------------------------- /platform/osx/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/osx/bg.png -------------------------------------------------------------------------------- /platform/osx/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/osx/icons.icns -------------------------------------------------------------------------------- /platform/switch/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/switch/icon.jpg -------------------------------------------------------------------------------- /platform/vita/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/vita/sce_sys/icon0.png -------------------------------------------------------------------------------- /platform/vita/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/vita/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /platform/vita/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/vita/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /platform/vita/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/vita/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_assert.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_atomic.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_audio.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_bits.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_blendmode.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_clipboard.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_android.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_psp.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_windows.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_copying.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_egl.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_endian.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_error.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_events.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_filesystem.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_gesture.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_haptic.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_hints.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_image.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_joystick.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_keyboard.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_keycode.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_loadso.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_locale.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_log.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_main.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_messagebox.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_metal.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_misc.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_mixer.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_mouse.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_mutex.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_name.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengl.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles2.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_pixels.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_platform.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_power.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_quit.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_rect.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_render.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_revision.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_rwops.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_scancode.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_sensor.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_shape.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_stdinc.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_surface.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_system.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_syswm.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_assert.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_common.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_compare.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_font.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_harness.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_images.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_log.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_md5.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_memory.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_test_random.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_thread.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_timer.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_touch.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_types.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_version.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_video.h -------------------------------------------------------------------------------- /platform/win32/ext/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/SDL_vulkan.h -------------------------------------------------------------------------------- /platform/win32/ext/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/begin_code.h -------------------------------------------------------------------------------- /platform/win32/ext/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/close_code.h -------------------------------------------------------------------------------- /platform/win32/ext/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/png.h -------------------------------------------------------------------------------- /platform/win32/ext/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/pngconf.h -------------------------------------------------------------------------------- /platform/win32/ext/include/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/pnglibconf.h -------------------------------------------------------------------------------- /platform/win32/ext/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/zconf.h -------------------------------------------------------------------------------- /platform/win32/ext/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/include/zlib.h -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/SDL2_image.lib -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/SDL2_mixer.lib -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /platform/win32/ext/lib/x64/libpng16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/lib/x64/libpng16.lib -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/SDL2.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/SDL2_image.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/SDL2_mixer.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libFLAC-8.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libjpeg-9.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libmodplug-1.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libmpg123-0.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libogg-0.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libopus-0.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libopusfile-0.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libpng16-16.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libpng16.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libtiff-5.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libvorbis-0.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libvorbisfile-3.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/libwebp-7.dll -------------------------------------------------------------------------------- /platform/win32/ext/runtime/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/ext/runtime/x64/zlib1.dll -------------------------------------------------------------------------------- /platform/win32/extract/extract.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/extract/extract.vcxproj -------------------------------------------------------------------------------- /platform/win32/extract/extract.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/extract/extract.vcxproj.filters -------------------------------------------------------------------------------- /platform/win32/nx/nx.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/nx.aps -------------------------------------------------------------------------------- /platform/win32/nx/nx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/nx.rc -------------------------------------------------------------------------------- /platform/win32/nx/nx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/nx.vcxproj -------------------------------------------------------------------------------- /platform/win32/nx/nx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/nx.vcxproj.filters -------------------------------------------------------------------------------- /platform/win32/nx/nx.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/nx.vcxproj.user -------------------------------------------------------------------------------- /platform/win32/nx/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx/resource.h -------------------------------------------------------------------------------- /platform/win32/nx64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/win32/nx64x64.ico -------------------------------------------------------------------------------- /platform/xdg/appdata-add-version.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/xdg/appdata-add-version.xslt -------------------------------------------------------------------------------- /platform/xdg/org.nxengine.nxengine_evo.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/xdg/org.nxengine.nxengine_evo.appdata.xml -------------------------------------------------------------------------------- /platform/xdg/org.nxengine.nxengine_evo.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/xdg/org.nxengine.nxengine_evo.desktop -------------------------------------------------------------------------------- /platform/xdg/org.nxengine.nxengine_evo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/platform/xdg/org.nxengine.nxengine_evo.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/ObjManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ObjManager.cpp -------------------------------------------------------------------------------- /src/ObjManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ObjManager.h -------------------------------------------------------------------------------- /src/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ResourceManager.cpp -------------------------------------------------------------------------------- /src/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ResourceManager.h -------------------------------------------------------------------------------- /src/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/Singleton.h -------------------------------------------------------------------------------- /src/TextBox/ItemImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/ItemImage.cpp -------------------------------------------------------------------------------- /src/TextBox/ItemImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/ItemImage.h -------------------------------------------------------------------------------- /src/TextBox/SaveSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/SaveSelect.cpp -------------------------------------------------------------------------------- /src/TextBox/SaveSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/SaveSelect.h -------------------------------------------------------------------------------- /src/TextBox/StageSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/StageSelect.cpp -------------------------------------------------------------------------------- /src/TextBox/StageSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/StageSelect.h -------------------------------------------------------------------------------- /src/TextBox/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/TextBox.cpp -------------------------------------------------------------------------------- /src/TextBox/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/TextBox.h -------------------------------------------------------------------------------- /src/TextBox/YesNoPrompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/YesNoPrompt.cpp -------------------------------------------------------------------------------- /src/TextBox/YesNoPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/TextBox/YesNoPrompt.h -------------------------------------------------------------------------------- /src/Utils/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/Utils/Common.h -------------------------------------------------------------------------------- /src/Utils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/Utils/Logger.cpp -------------------------------------------------------------------------------- /src/Utils/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/Utils/Logger.h -------------------------------------------------------------------------------- /src/ai/IrregularBBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/IrregularBBox.cpp -------------------------------------------------------------------------------- /src/ai/IrregularBBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/IrregularBBox.h -------------------------------------------------------------------------------- /src/ai/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/ai.cpp -------------------------------------------------------------------------------- /src/ai/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/ai.h -------------------------------------------------------------------------------- /src/ai/almond/almond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/almond/almond.cpp -------------------------------------------------------------------------------- /src/ai/almond/almond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/almond/almond.h -------------------------------------------------------------------------------- /src/ai/balrog_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/balrog_common.cpp -------------------------------------------------------------------------------- /src/ai/balrog_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/balrog_common.h -------------------------------------------------------------------------------- /src/ai/boss/balfrog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/balfrog.cpp -------------------------------------------------------------------------------- /src/ai/boss/balfrog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/balfrog.h -------------------------------------------------------------------------------- /src/ai/boss/ballos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/ballos.cpp -------------------------------------------------------------------------------- /src/ai/boss/ballos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/ballos.h -------------------------------------------------------------------------------- /src/ai/boss/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/core.cpp -------------------------------------------------------------------------------- /src/ai/boss/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/core.h -------------------------------------------------------------------------------- /src/ai/boss/heavypress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/heavypress.cpp -------------------------------------------------------------------------------- /src/ai/boss/heavypress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/heavypress.h -------------------------------------------------------------------------------- /src/ai/boss/ironhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/ironhead.cpp -------------------------------------------------------------------------------- /src/ai/boss/ironhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/ironhead.h -------------------------------------------------------------------------------- /src/ai/boss/omega.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/omega.cpp -------------------------------------------------------------------------------- /src/ai/boss/omega.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/omega.h -------------------------------------------------------------------------------- /src/ai/boss/sisters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/sisters.cpp -------------------------------------------------------------------------------- /src/ai/boss/sisters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/sisters.h -------------------------------------------------------------------------------- /src/ai/boss/undead_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/undead_core.cpp -------------------------------------------------------------------------------- /src/ai/boss/undead_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/undead_core.h -------------------------------------------------------------------------------- /src/ai/boss/x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/x.cpp -------------------------------------------------------------------------------- /src/ai/boss/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/boss/x.h -------------------------------------------------------------------------------- /src/ai/egg/egg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/egg.cpp -------------------------------------------------------------------------------- /src/ai/egg/egg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/egg.h -------------------------------------------------------------------------------- /src/ai/egg/egg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/egg2.cpp -------------------------------------------------------------------------------- /src/ai/egg/egg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/egg2.h -------------------------------------------------------------------------------- /src/ai/egg/igor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/igor.cpp -------------------------------------------------------------------------------- /src/ai/egg/igor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/egg/igor.h -------------------------------------------------------------------------------- /src/ai/final_battle/balcony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/balcony.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/balcony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/balcony.h -------------------------------------------------------------------------------- /src/ai/final_battle/doctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/doctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor.h -------------------------------------------------------------------------------- /src/ai/final_battle/doctor_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor_common.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/doctor_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor_common.h -------------------------------------------------------------------------------- /src/ai/final_battle/doctor_frenzied.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor_frenzied.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/doctor_frenzied.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/doctor_frenzied.h -------------------------------------------------------------------------------- /src/ai/final_battle/final_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/final_misc.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/final_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/final_misc.h -------------------------------------------------------------------------------- /src/ai/final_battle/misery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/misery.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/misery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/misery.h -------------------------------------------------------------------------------- /src/ai/final_battle/sidekicks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/sidekicks.cpp -------------------------------------------------------------------------------- /src/ai/final_battle/sidekicks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/final_battle/sidekicks.h -------------------------------------------------------------------------------- /src/ai/first_cave/first_cave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/first_cave/first_cave.cpp -------------------------------------------------------------------------------- /src/ai/first_cave/first_cave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/first_cave/first_cave.h -------------------------------------------------------------------------------- /src/ai/hell/ballos_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/ballos_misc.cpp -------------------------------------------------------------------------------- /src/ai/hell/ballos_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/ballos_misc.h -------------------------------------------------------------------------------- /src/ai/hell/ballos_priest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/ballos_priest.cpp -------------------------------------------------------------------------------- /src/ai/hell/ballos_priest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/ballos_priest.h -------------------------------------------------------------------------------- /src/ai/hell/hell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/hell.cpp -------------------------------------------------------------------------------- /src/ai/hell/hell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/hell/hell.h -------------------------------------------------------------------------------- /src/ai/last_cave/last_cave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/last_cave/last_cave.cpp -------------------------------------------------------------------------------- /src/ai/last_cave/last_cave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/last_cave/last_cave.h -------------------------------------------------------------------------------- /src/ai/maze/balrog_boss_missiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/balrog_boss_missiles.cpp -------------------------------------------------------------------------------- /src/ai/maze/balrog_boss_missiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/balrog_boss_missiles.h -------------------------------------------------------------------------------- /src/ai/maze/critter_purple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/critter_purple.cpp -------------------------------------------------------------------------------- /src/ai/maze/critter_purple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/critter_purple.h -------------------------------------------------------------------------------- /src/ai/maze/gaudi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/gaudi.cpp -------------------------------------------------------------------------------- /src/ai/maze/gaudi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/gaudi.h -------------------------------------------------------------------------------- /src/ai/maze/labyrinth_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/labyrinth_m.cpp -------------------------------------------------------------------------------- /src/ai/maze/labyrinth_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/labyrinth_m.h -------------------------------------------------------------------------------- /src/ai/maze/maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/maze.cpp -------------------------------------------------------------------------------- /src/ai/maze/maze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/maze.h -------------------------------------------------------------------------------- /src/ai/maze/pooh_black.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/pooh_black.cpp -------------------------------------------------------------------------------- /src/ai/maze/pooh_black.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/maze/pooh_black.h -------------------------------------------------------------------------------- /src/ai/npc/balrog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/balrog.cpp -------------------------------------------------------------------------------- /src/ai/npc/balrog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/balrog.h -------------------------------------------------------------------------------- /src/ai/npc/curly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/curly.cpp -------------------------------------------------------------------------------- /src/ai/npc/curly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/curly.h -------------------------------------------------------------------------------- /src/ai/npc/curly_ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/curly_ai.cpp -------------------------------------------------------------------------------- /src/ai/npc/curly_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/curly_ai.h -------------------------------------------------------------------------------- /src/ai/npc/misery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/misery.cpp -------------------------------------------------------------------------------- /src/ai/npc/misery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/misery.h -------------------------------------------------------------------------------- /src/ai/npc/npcguest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcguest.cpp -------------------------------------------------------------------------------- /src/ai/npc/npcguest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcguest.h -------------------------------------------------------------------------------- /src/ai/npc/npcplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcplayer.cpp -------------------------------------------------------------------------------- /src/ai/npc/npcplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcplayer.h -------------------------------------------------------------------------------- /src/ai/npc/npcregu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcregu.cpp -------------------------------------------------------------------------------- /src/ai/npc/npcregu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/npc/npcregu.h -------------------------------------------------------------------------------- /src/ai/oside/oside.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/oside/oside.cpp -------------------------------------------------------------------------------- /src/ai/oside/oside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/oside/oside.h -------------------------------------------------------------------------------- /src/ai/plantation/plantation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/plantation/plantation.cpp -------------------------------------------------------------------------------- /src/ai/plantation/plantation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/plantation/plantation.h -------------------------------------------------------------------------------- /src/ai/sand/curly_boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/curly_boss.cpp -------------------------------------------------------------------------------- /src/ai/sand/curly_boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/curly_boss.h -------------------------------------------------------------------------------- /src/ai/sand/puppy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/puppy.cpp -------------------------------------------------------------------------------- /src/ai/sand/puppy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/puppy.h -------------------------------------------------------------------------------- /src/ai/sand/sand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/sand.cpp -------------------------------------------------------------------------------- /src/ai/sand/sand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/sand.h -------------------------------------------------------------------------------- /src/ai/sand/toroko_frenzied.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/toroko_frenzied.cpp -------------------------------------------------------------------------------- /src/ai/sand/toroko_frenzied.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sand/toroko_frenzied.h -------------------------------------------------------------------------------- /src/ai/stdai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/stdai.h -------------------------------------------------------------------------------- /src/ai/sym/smoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sym/smoke.cpp -------------------------------------------------------------------------------- /src/ai/sym/smoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sym/smoke.h -------------------------------------------------------------------------------- /src/ai/sym/sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sym/sym.cpp -------------------------------------------------------------------------------- /src/ai/sym/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/sym/sym.h -------------------------------------------------------------------------------- /src/ai/village/balrog_boss_running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/balrog_boss_running.cpp -------------------------------------------------------------------------------- /src/ai/village/balrog_boss_running.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/balrog_boss_running.h -------------------------------------------------------------------------------- /src/ai/village/ma_pignon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/ma_pignon.cpp -------------------------------------------------------------------------------- /src/ai/village/ma_pignon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/ma_pignon.h -------------------------------------------------------------------------------- /src/ai/village/village.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/village.cpp -------------------------------------------------------------------------------- /src/ai/village/village.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/village/village.h -------------------------------------------------------------------------------- /src/ai/weapons/blade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/blade.cpp -------------------------------------------------------------------------------- /src/ai/weapons/blade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/blade.h -------------------------------------------------------------------------------- /src/ai/weapons/bubbler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/bubbler.cpp -------------------------------------------------------------------------------- /src/ai/weapons/bubbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/bubbler.h -------------------------------------------------------------------------------- /src/ai/weapons/fireball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/fireball.cpp -------------------------------------------------------------------------------- /src/ai/weapons/fireball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/fireball.h -------------------------------------------------------------------------------- /src/ai/weapons/missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/missile.cpp -------------------------------------------------------------------------------- /src/ai/weapons/missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/missile.h -------------------------------------------------------------------------------- /src/ai/weapons/nemesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/nemesis.cpp -------------------------------------------------------------------------------- /src/ai/weapons/nemesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/nemesis.h -------------------------------------------------------------------------------- /src/ai/weapons/polar_mgun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/polar_mgun.cpp -------------------------------------------------------------------------------- /src/ai/weapons/polar_mgun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/polar_mgun.h -------------------------------------------------------------------------------- /src/ai/weapons/snake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/snake.cpp -------------------------------------------------------------------------------- /src/ai/weapons/snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/snake.h -------------------------------------------------------------------------------- /src/ai/weapons/spur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/spur.cpp -------------------------------------------------------------------------------- /src/ai/weapons/spur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/spur.h -------------------------------------------------------------------------------- /src/ai/weapons/weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/weapons.cpp -------------------------------------------------------------------------------- /src/ai/weapons/weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/weapons.h -------------------------------------------------------------------------------- /src/ai/weapons/whimstar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/whimstar.cpp -------------------------------------------------------------------------------- /src/ai/weapons/whimstar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weapons/whimstar.h -------------------------------------------------------------------------------- /src/ai/weed/balrog_boss_flying.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/balrog_boss_flying.cpp -------------------------------------------------------------------------------- /src/ai/weed/balrog_boss_flying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/balrog_boss_flying.h -------------------------------------------------------------------------------- /src/ai/weed/frenzied_mimiga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/frenzied_mimiga.cpp -------------------------------------------------------------------------------- /src/ai/weed/frenzied_mimiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/frenzied_mimiga.h -------------------------------------------------------------------------------- /src/ai/weed/weed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/weed.cpp -------------------------------------------------------------------------------- /src/ai/weed/weed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/ai/weed/weed.h -------------------------------------------------------------------------------- /src/autogen/AssignSprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/autogen/AssignSprites.cpp -------------------------------------------------------------------------------- /src/autogen/AssignSprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/autogen/AssignSprites.h -------------------------------------------------------------------------------- /src/autogen/objnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/autogen/objnames.h -------------------------------------------------------------------------------- /src/autogen/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/autogen/sprites.h -------------------------------------------------------------------------------- /src/caret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/caret.cpp -------------------------------------------------------------------------------- /src/caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/caret.h -------------------------------------------------------------------------------- /src/common/InitList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/InitList.cpp -------------------------------------------------------------------------------- /src/common/InitList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/InitList.h -------------------------------------------------------------------------------- /src/common/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/basics.h -------------------------------------------------------------------------------- /src/common/bufio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/bufio.h -------------------------------------------------------------------------------- /src/common/glob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/glob.cpp -------------------------------------------------------------------------------- /src/common/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/glob.h -------------------------------------------------------------------------------- /src/common/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/llist.h -------------------------------------------------------------------------------- /src/common/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/misc.cpp -------------------------------------------------------------------------------- /src/common/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/misc.h -------------------------------------------------------------------------------- /src/common/myfnmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/myfnmatch.cpp -------------------------------------------------------------------------------- /src/common/myfnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/common/myfnmatch.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/config.h -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/console.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/endgame/CredReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/CredReader.cpp -------------------------------------------------------------------------------- /src/endgame/CredReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/CredReader.h -------------------------------------------------------------------------------- /src/endgame/credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/credits.cpp -------------------------------------------------------------------------------- /src/endgame/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/credits.h -------------------------------------------------------------------------------- /src/endgame/island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/island.cpp -------------------------------------------------------------------------------- /src/endgame/island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/island.h -------------------------------------------------------------------------------- /src/endgame/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/misc.cpp -------------------------------------------------------------------------------- /src/endgame/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/endgame/misc.h -------------------------------------------------------------------------------- /src/extract/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/crc.cpp -------------------------------------------------------------------------------- /src/extract/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/crc.h -------------------------------------------------------------------------------- /src/extract/extractfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractfiles.cpp -------------------------------------------------------------------------------- /src/extract/extractfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractfiles.h -------------------------------------------------------------------------------- /src/extract/extractpxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractpxt.cpp -------------------------------------------------------------------------------- /src/extract/extractpxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractpxt.h -------------------------------------------------------------------------------- /src/extract/extractstages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractstages.cpp -------------------------------------------------------------------------------- /src/extract/extractstages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/extractstages.h -------------------------------------------------------------------------------- /src/extract/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/extract/main.cpp -------------------------------------------------------------------------------- /src/floattext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/floattext.cpp -------------------------------------------------------------------------------- /src/floattext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/floattext.h -------------------------------------------------------------------------------- /src/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/game.cpp -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/game.h -------------------------------------------------------------------------------- /src/graphics/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Font.cpp -------------------------------------------------------------------------------- /src/graphics/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Font.h -------------------------------------------------------------------------------- /src/graphics/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Renderer.cpp -------------------------------------------------------------------------------- /src/graphics/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Renderer.h -------------------------------------------------------------------------------- /src/graphics/Sprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Sprites.cpp -------------------------------------------------------------------------------- /src/graphics/Sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Sprites.h -------------------------------------------------------------------------------- /src/graphics/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Surface.cpp -------------------------------------------------------------------------------- /src/graphics/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Surface.h -------------------------------------------------------------------------------- /src/graphics/Tileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Tileset.cpp -------------------------------------------------------------------------------- /src/graphics/Tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/Tileset.h -------------------------------------------------------------------------------- /src/graphics/nx_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/nx_icon.h -------------------------------------------------------------------------------- /src/graphics/pngfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/pngfuncs.cpp -------------------------------------------------------------------------------- /src/graphics/pngfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/pngfuncs.h -------------------------------------------------------------------------------- /src/graphics/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/types.h -------------------------------------------------------------------------------- /src/graphics/zoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/zoom.cpp -------------------------------------------------------------------------------- /src/graphics/zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/graphics/zoom.h -------------------------------------------------------------------------------- /src/i18n/minibidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/i18n/minibidi.cpp -------------------------------------------------------------------------------- /src/i18n/minibidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/i18n/minibidi.h -------------------------------------------------------------------------------- /src/i18n/translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/i18n/translate.cpp -------------------------------------------------------------------------------- /src/i18n/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/i18n/translate.h -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/input.h -------------------------------------------------------------------------------- /src/intro/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/intro/intro.cpp -------------------------------------------------------------------------------- /src/intro/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/intro/intro.h -------------------------------------------------------------------------------- /src/intro/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/intro/title.cpp -------------------------------------------------------------------------------- /src/intro/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/intro/title.h -------------------------------------------------------------------------------- /src/inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/inventory.cpp -------------------------------------------------------------------------------- /src/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/inventory.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/map.h -------------------------------------------------------------------------------- /src/map_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/map_system.cpp -------------------------------------------------------------------------------- /src/map_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/map_system.h -------------------------------------------------------------------------------- /src/maprecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/maprecord.h -------------------------------------------------------------------------------- /src/niku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/niku.cpp -------------------------------------------------------------------------------- /src/niku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/niku.h -------------------------------------------------------------------------------- /src/nx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/nx.h -------------------------------------------------------------------------------- /src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/object.cpp -------------------------------------------------------------------------------- /src/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/object.h -------------------------------------------------------------------------------- /src/p_arms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/p_arms.cpp -------------------------------------------------------------------------------- /src/p_arms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/p_arms.h -------------------------------------------------------------------------------- /src/pause/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/dialog.cpp -------------------------------------------------------------------------------- /src/pause/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/dialog.h -------------------------------------------------------------------------------- /src/pause/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/message.cpp -------------------------------------------------------------------------------- /src/pause/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/message.h -------------------------------------------------------------------------------- /src/pause/mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/mods.cpp -------------------------------------------------------------------------------- /src/pause/mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/mods.h -------------------------------------------------------------------------------- /src/pause/objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/objects.cpp -------------------------------------------------------------------------------- /src/pause/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/objects.h -------------------------------------------------------------------------------- /src/pause/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/options.cpp -------------------------------------------------------------------------------- /src/pause/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/options.h -------------------------------------------------------------------------------- /src/pause/pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/pause.cpp -------------------------------------------------------------------------------- /src/pause/pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/pause/pause.h -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/player.h -------------------------------------------------------------------------------- /src/playerstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/playerstats.cpp -------------------------------------------------------------------------------- /src/playerstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/playerstats.h -------------------------------------------------------------------------------- /src/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/profile.cpp -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/screeneffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/screeneffect.cpp -------------------------------------------------------------------------------- /src/screeneffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/screeneffect.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/siflib/sectSprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sectSprites.cpp -------------------------------------------------------------------------------- /src/siflib/sectSprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sectSprites.h -------------------------------------------------------------------------------- /src/siflib/sectStringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sectStringArray.cpp -------------------------------------------------------------------------------- /src/siflib/sectStringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sectStringArray.h -------------------------------------------------------------------------------- /src/siflib/sif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sif.cpp -------------------------------------------------------------------------------- /src/siflib/sif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sif.h -------------------------------------------------------------------------------- /src/siflib/sifloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sifloader.cpp -------------------------------------------------------------------------------- /src/siflib/sifloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/siflib/sifloader.h -------------------------------------------------------------------------------- /src/slope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/slope.cpp -------------------------------------------------------------------------------- /src/slope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/slope.h -------------------------------------------------------------------------------- /src/sound/Ogg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Ogg.cpp -------------------------------------------------------------------------------- /src/sound/Ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Ogg.h -------------------------------------------------------------------------------- /src/sound/Organya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Organya.cpp -------------------------------------------------------------------------------- /src/sound/Organya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Organya.h -------------------------------------------------------------------------------- /src/sound/Pixtone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Pixtone.cpp -------------------------------------------------------------------------------- /src/sound/Pixtone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/Pixtone.h -------------------------------------------------------------------------------- /src/sound/SoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/SoundManager.cpp -------------------------------------------------------------------------------- /src/sound/SoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/sound/SoundManager.h -------------------------------------------------------------------------------- /src/stageboss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/stageboss.cpp -------------------------------------------------------------------------------- /src/stageboss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/stageboss.h -------------------------------------------------------------------------------- /src/stagedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/stagedata.cpp -------------------------------------------------------------------------------- /src/stagedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/stagedata.h -------------------------------------------------------------------------------- /src/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/statusbar.cpp -------------------------------------------------------------------------------- /src/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/statusbar.h -------------------------------------------------------------------------------- /src/trig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/trig.cpp -------------------------------------------------------------------------------- /src/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/trig.h -------------------------------------------------------------------------------- /src/tsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/tsc.cpp -------------------------------------------------------------------------------- /src/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/tsc.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxengine/nxengine-evo/HEAD/src/version.h --------------------------------------------------------------------------------