├── Code ├── SDI_headers │ ├── SDI_compiler.h │ ├── SDI_hook.h │ ├── SDI_interrupt.h │ ├── SDI_lib.h │ ├── SDI_misc.h │ ├── SDI_stdarg.h │ └── readme.md ├── anims.c ├── anims.h ├── assets.h ├── audio.c ├── audio.h ├── clp.c ├── collisions.c ├── collisions.h ├── color.c ├── color.h ├── cop_inst_macros.h ├── diskio.c ├── diskio.h ├── display.c ├── display.h ├── display_level.c ├── display_level.h ├── display_loading.c ├── display_loading.h ├── display_menu.c ├── display_menu.h ├── display_splash.c ├── display_splash.h ├── fonts.c ├── fonts.h ├── functions.h ├── gameobject.c ├── gameobject.h ├── input.c ├── input.h ├── keyboard.c ├── keyboard.h ├── level.c ├── level.h ├── level_display_gradients.c ├── level_display_gradients.h ├── level_display_loop.c ├── main.c ├── makefile ├── missing_hardware_defines.h ├── palettes.h ├── physics.c ├── physics.h ├── ptplayer.asm ├── ptplayer.h ├── rainbow.c ├── rainbow.h ├── settings.h ├── sevgi.h ├── system.c ├── system.h ├── tilemap.c ├── tilemap.h ├── tiles.c ├── tiles.h ├── ui.c ├── ui.h └── version.h ├── Docs.info ├── Docs ├── Sevgi_Editor.guide ├── Sevgi_Editor.guide.info ├── Sevgi_Engine.guide ├── Sevgi_Engine.guide.info ├── ptplayer_licence └── ptplayer_licence.info ├── Extras ├── Sevgi_Engine_Gameobject_Properties.json ├── display_example.c ├── makefile_sas_c └── ptplayer_sas_c.o ├── ILBM_image.c ├── ILBM_image.h ├── Icons ├── GlowIcons.info ├── GlowIcons │ ├── Sevgi_Editor.info │ └── Sevgi_Editor_New.info ├── MagicWB.info ├── MagicWB │ └── Sevgi_Editor_MWB.info ├── Mason.info ├── Mason │ └── Sevgi_Editor.info ├── Mason_2010.info └── Mason_2010 │ └── Sevgi_Editor.info ├── Images ├── MWB_20x20 │ ├── anim.iff │ ├── boing.iff │ ├── break_point.iff │ ├── compile.iff │ ├── copy.iff │ ├── cut.iff │ ├── debug.iff │ ├── display.iff │ ├── dpaint.iff │ ├── editor.iff │ ├── font.iff │ ├── gear.iff │ ├── gradient.iff │ ├── image.iff │ ├── joystick.iff │ ├── linker.iff │ ├── load.iff │ ├── map.iff │ ├── new.iff │ ├── new_display.iff │ ├── object.iff │ ├── objects.iff │ ├── palette.iff │ ├── paste.iff │ ├── redo.iff │ ├── run.iff │ ├── save.iff │ ├── saveas.iff │ ├── sprite.iff │ ├── tileset.iff │ ├── tool.iff │ └── undo.iff └── no_image.ilbm ├── README.md ├── Sevgi_Editor.info ├── Templates ├── Platformer.ilbm ├── Platformer.text ├── Platformer │ ├── anims.c │ ├── anims.h │ ├── assets.h │ ├── assets │ │ ├── Background.ilbm │ │ ├── FreeCuteTilemap.js │ │ ├── FreeCuteTileset.ilbm │ │ ├── FreeCuteTileset.png │ │ ├── FreeCuteTileset.tsx │ │ ├── MouseSheet2.iff │ │ ├── Palette.ilbm │ │ ├── sprite_sheet_all_L.iff │ │ └── sprite_sheet_all_R.iff │ ├── collisions.c │ ├── collisions.h │ ├── data │ │ ├── Background.ilbm │ │ ├── Background.mod │ │ ├── FreeCuteTilemap │ │ │ ├── Gameobjects.obj │ │ │ └── Tilemap.map │ │ ├── FreeCuteTileset.tls │ │ ├── Jump.iff │ │ ├── Left_Stomp.iff │ │ ├── MousePointers2.spr │ │ ├── RedRidingHood.spr │ │ ├── RedRidingHood_fm2.spr │ │ ├── Right_Stomp.iff │ │ ├── orbitron_15.fnt │ │ ├── orbitron_15.iff │ │ ├── select-granted-05.iff │ │ └── select-granted-06.iff │ ├── level_display_gradients.c │ ├── level_display_gradients.h │ ├── level_display_loop.c │ ├── palettes.h │ └── settings.h ├── Top-Down_Adventure.ilbm ├── Top-Down_Adventure.text └── Top-Down_Adventure │ ├── anims.c │ ├── anims.h │ ├── assets.h │ ├── assets │ ├── Character_Sheet.iff │ ├── Character_Sheet.png │ ├── MouseSheet1.iff │ ├── Pixel16.js │ ├── Pixel16.tsx │ ├── Pixel16_Sheet.iff │ ├── Pixel16_Sheet.png │ └── Waterfall.iff │ ├── collisions.c │ ├── collisions.h │ ├── data │ ├── Character.spr │ ├── MousePointers1.spr │ ├── Pixel16.tls │ ├── Pixel16 │ │ ├── Gameobjects.obj │ │ └── Tilemap.map │ ├── orbitron_15.fnt │ ├── orbitron_15.iff │ ├── select-granted-05.iff │ ├── select-granted-06.iff │ ├── walls-beautiful_world.mod │ ├── waterfall.iff │ └── waterfall.sht │ ├── level_display_loop.c │ ├── palettes.h │ └── settings.h ├── Tools ├── BOBSheeter ├── ConvertMap ├── ConvertTiles ├── SpriteBankMerger ├── SpriteBanker └── src │ ├── BOBSheeter │ ├── main.c │ └── makefile │ ├── ConvertMap │ ├── main.c │ ├── makefile │ ├── utility.c │ └── utility.h │ ├── ConvertTiles │ ├── main.c │ └── makefile │ ├── SpriteBankMerger │ ├── main.c │ └── makefile │ └── SpriteBanker │ ├── main.c │ └── makefile ├── ackstring.c ├── ackstring.h ├── assets_editor.c ├── assets_editor.h ├── bitmap_selector.c ├── bitmap_selector.h ├── bobsheet_creator.c ├── bobsheet_creator.h ├── chunky_image.c ├── chunky_image.h ├── color_gadget.c ├── color_gadget.h ├── color_palette.c ├── color_palette.h ├── display_creator.c ├── display_creator.h ├── dosupernew.c ├── dosupernew.h ├── dtpicdisplay.c ├── dtpicdisplay.h ├── editor_settings.c ├── editor_settings.h ├── game_settings.c ├── game_settings.h ├── gamefont_creator.c ├── gamefont_creator.h ├── image_display.c ├── image_display.h ├── image_editor.c ├── image_editor.h ├── image_spec.c ├── image_spec.h ├── includes ├── SDI_compiler.h ├── SDI_hook.h ├── SDI_interrupt.h ├── SDI_lib.h ├── SDI_misc.h ├── SDI_stdarg.h └── readme.md ├── integer_gadget.c ├── integer_gadget.h ├── main.c ├── makefile ├── new_project.c ├── new_project.h ├── palette_editor.c ├── palette_editor.h ├── palette_selector.c ├── palette_selector.h ├── popasl_string.c ├── popasl_string.h ├── spritebank_creator.c ├── spritebank_creator.h ├── tilemap_creator.c ├── tilemap_creator.h ├── tileset_creator.c ├── tileset_creator.h ├── toolbar.c ├── toolbar.h ├── tooltypes.c ├── tooltypes.h ├── utility.c └── utility.h /Code/SDI_headers/SDI_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_compiler.h -------------------------------------------------------------------------------- /Code/SDI_headers/SDI_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_hook.h -------------------------------------------------------------------------------- /Code/SDI_headers/SDI_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_interrupt.h -------------------------------------------------------------------------------- /Code/SDI_headers/SDI_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_lib.h -------------------------------------------------------------------------------- /Code/SDI_headers/SDI_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_misc.h -------------------------------------------------------------------------------- /Code/SDI_headers/SDI_stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/SDI_stdarg.h -------------------------------------------------------------------------------- /Code/SDI_headers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/SDI_headers/readme.md -------------------------------------------------------------------------------- /Code/anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/anims.c -------------------------------------------------------------------------------- /Code/anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/anims.h -------------------------------------------------------------------------------- /Code/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/assets.h -------------------------------------------------------------------------------- /Code/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/audio.c -------------------------------------------------------------------------------- /Code/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/audio.h -------------------------------------------------------------------------------- /Code/clp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/clp.c -------------------------------------------------------------------------------- /Code/collisions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/collisions.c -------------------------------------------------------------------------------- /Code/collisions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/collisions.h -------------------------------------------------------------------------------- /Code/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/color.c -------------------------------------------------------------------------------- /Code/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/color.h -------------------------------------------------------------------------------- /Code/cop_inst_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/cop_inst_macros.h -------------------------------------------------------------------------------- /Code/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/diskio.c -------------------------------------------------------------------------------- /Code/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/diskio.h -------------------------------------------------------------------------------- /Code/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display.c -------------------------------------------------------------------------------- /Code/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display.h -------------------------------------------------------------------------------- /Code/display_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_level.c -------------------------------------------------------------------------------- /Code/display_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_level.h -------------------------------------------------------------------------------- /Code/display_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_loading.c -------------------------------------------------------------------------------- /Code/display_loading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_loading.h -------------------------------------------------------------------------------- /Code/display_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_menu.c -------------------------------------------------------------------------------- /Code/display_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_menu.h -------------------------------------------------------------------------------- /Code/display_splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_splash.c -------------------------------------------------------------------------------- /Code/display_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/display_splash.h -------------------------------------------------------------------------------- /Code/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/fonts.c -------------------------------------------------------------------------------- /Code/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/fonts.h -------------------------------------------------------------------------------- /Code/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/functions.h -------------------------------------------------------------------------------- /Code/gameobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/gameobject.c -------------------------------------------------------------------------------- /Code/gameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/gameobject.h -------------------------------------------------------------------------------- /Code/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/input.c -------------------------------------------------------------------------------- /Code/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/input.h -------------------------------------------------------------------------------- /Code/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/keyboard.c -------------------------------------------------------------------------------- /Code/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/keyboard.h -------------------------------------------------------------------------------- /Code/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/level.c -------------------------------------------------------------------------------- /Code/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/level.h -------------------------------------------------------------------------------- /Code/level_display_gradients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/level_display_gradients.c -------------------------------------------------------------------------------- /Code/level_display_gradients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/level_display_gradients.h -------------------------------------------------------------------------------- /Code/level_display_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/level_display_loop.c -------------------------------------------------------------------------------- /Code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/main.c -------------------------------------------------------------------------------- /Code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/makefile -------------------------------------------------------------------------------- /Code/missing_hardware_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/missing_hardware_defines.h -------------------------------------------------------------------------------- /Code/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/palettes.h -------------------------------------------------------------------------------- /Code/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/physics.c -------------------------------------------------------------------------------- /Code/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/physics.h -------------------------------------------------------------------------------- /Code/ptplayer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/ptplayer.asm -------------------------------------------------------------------------------- /Code/ptplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/ptplayer.h -------------------------------------------------------------------------------- /Code/rainbow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/rainbow.c -------------------------------------------------------------------------------- /Code/rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/rainbow.h -------------------------------------------------------------------------------- /Code/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/settings.h -------------------------------------------------------------------------------- /Code/sevgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/sevgi.h -------------------------------------------------------------------------------- /Code/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/system.c -------------------------------------------------------------------------------- /Code/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/system.h -------------------------------------------------------------------------------- /Code/tilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/tilemap.c -------------------------------------------------------------------------------- /Code/tilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/tilemap.h -------------------------------------------------------------------------------- /Code/tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/tiles.c -------------------------------------------------------------------------------- /Code/tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/tiles.h -------------------------------------------------------------------------------- /Code/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/ui.c -------------------------------------------------------------------------------- /Code/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/ui.h -------------------------------------------------------------------------------- /Code/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Code/version.h -------------------------------------------------------------------------------- /Docs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs.info -------------------------------------------------------------------------------- /Docs/Sevgi_Editor.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/Sevgi_Editor.guide -------------------------------------------------------------------------------- /Docs/Sevgi_Editor.guide.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/Sevgi_Editor.guide.info -------------------------------------------------------------------------------- /Docs/Sevgi_Engine.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/Sevgi_Engine.guide -------------------------------------------------------------------------------- /Docs/Sevgi_Engine.guide.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/Sevgi_Engine.guide.info -------------------------------------------------------------------------------- /Docs/ptplayer_licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/ptplayer_licence -------------------------------------------------------------------------------- /Docs/ptplayer_licence.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Docs/ptplayer_licence.info -------------------------------------------------------------------------------- /Extras/Sevgi_Engine_Gameobject_Properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Extras/Sevgi_Engine_Gameobject_Properties.json -------------------------------------------------------------------------------- /Extras/display_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Extras/display_example.c -------------------------------------------------------------------------------- /Extras/makefile_sas_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Extras/makefile_sas_c -------------------------------------------------------------------------------- /Extras/ptplayer_sas_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Extras/ptplayer_sas_c.o -------------------------------------------------------------------------------- /ILBM_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/ILBM_image.c -------------------------------------------------------------------------------- /ILBM_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/ILBM_image.h -------------------------------------------------------------------------------- /Icons/GlowIcons.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/GlowIcons.info -------------------------------------------------------------------------------- /Icons/GlowIcons/Sevgi_Editor.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/GlowIcons/Sevgi_Editor.info -------------------------------------------------------------------------------- /Icons/GlowIcons/Sevgi_Editor_New.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/GlowIcons/Sevgi_Editor_New.info -------------------------------------------------------------------------------- /Icons/MagicWB.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/MagicWB.info -------------------------------------------------------------------------------- /Icons/MagicWB/Sevgi_Editor_MWB.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/MagicWB/Sevgi_Editor_MWB.info -------------------------------------------------------------------------------- /Icons/Mason.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/Mason.info -------------------------------------------------------------------------------- /Icons/Mason/Sevgi_Editor.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/Mason/Sevgi_Editor.info -------------------------------------------------------------------------------- /Icons/Mason_2010.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/Mason_2010.info -------------------------------------------------------------------------------- /Icons/Mason_2010/Sevgi_Editor.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Icons/Mason_2010/Sevgi_Editor.info -------------------------------------------------------------------------------- /Images/MWB_20x20/anim.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/anim.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/boing.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/boing.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/break_point.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/break_point.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/compile.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/compile.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/copy.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/copy.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/cut.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/cut.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/debug.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/debug.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/display.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/display.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/dpaint.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/dpaint.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/editor.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/editor.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/font.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/font.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/gear.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/gear.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/gradient.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/gradient.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/image.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/image.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/joystick.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/joystick.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/linker.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/linker.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/load.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/load.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/map.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/map.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/new.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/new.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/new_display.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/new_display.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/object.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/object.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/objects.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/objects.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/palette.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/palette.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/paste.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/paste.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/redo.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/redo.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/run.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/run.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/save.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/save.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/saveas.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/saveas.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/sprite.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/sprite.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/tileset.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/tileset.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/tool.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/tool.iff -------------------------------------------------------------------------------- /Images/MWB_20x20/undo.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/MWB_20x20/undo.iff -------------------------------------------------------------------------------- /Images/no_image.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Images/no_image.ilbm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/README.md -------------------------------------------------------------------------------- /Sevgi_Editor.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Sevgi_Editor.info -------------------------------------------------------------------------------- /Templates/Platformer.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer.ilbm -------------------------------------------------------------------------------- /Templates/Platformer.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer.text -------------------------------------------------------------------------------- /Templates/Platformer/anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/anims.c -------------------------------------------------------------------------------- /Templates/Platformer/anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/anims.h -------------------------------------------------------------------------------- /Templates/Platformer/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets.h -------------------------------------------------------------------------------- /Templates/Platformer/assets/Background.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/Background.ilbm -------------------------------------------------------------------------------- /Templates/Platformer/assets/FreeCuteTilemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/FreeCuteTilemap.js -------------------------------------------------------------------------------- /Templates/Platformer/assets/FreeCuteTileset.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/FreeCuteTileset.ilbm -------------------------------------------------------------------------------- /Templates/Platformer/assets/FreeCuteTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/FreeCuteTileset.png -------------------------------------------------------------------------------- /Templates/Platformer/assets/FreeCuteTileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/FreeCuteTileset.tsx -------------------------------------------------------------------------------- /Templates/Platformer/assets/MouseSheet2.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/MouseSheet2.iff -------------------------------------------------------------------------------- /Templates/Platformer/assets/Palette.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/Palette.ilbm -------------------------------------------------------------------------------- /Templates/Platformer/assets/sprite_sheet_all_L.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/sprite_sheet_all_L.iff -------------------------------------------------------------------------------- /Templates/Platformer/assets/sprite_sheet_all_R.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/assets/sprite_sheet_all_R.iff -------------------------------------------------------------------------------- /Templates/Platformer/collisions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/collisions.c -------------------------------------------------------------------------------- /Templates/Platformer/collisions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/collisions.h -------------------------------------------------------------------------------- /Templates/Platformer/data/Background.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/Background.ilbm -------------------------------------------------------------------------------- /Templates/Platformer/data/Background.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/Background.mod -------------------------------------------------------------------------------- /Templates/Platformer/data/FreeCuteTilemap/Gameobjects.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/FreeCuteTilemap/Gameobjects.obj -------------------------------------------------------------------------------- /Templates/Platformer/data/FreeCuteTilemap/Tilemap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/FreeCuteTilemap/Tilemap.map -------------------------------------------------------------------------------- /Templates/Platformer/data/FreeCuteTileset.tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/FreeCuteTileset.tls -------------------------------------------------------------------------------- /Templates/Platformer/data/Jump.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/Jump.iff -------------------------------------------------------------------------------- /Templates/Platformer/data/Left_Stomp.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/Left_Stomp.iff -------------------------------------------------------------------------------- /Templates/Platformer/data/MousePointers2.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/MousePointers2.spr -------------------------------------------------------------------------------- /Templates/Platformer/data/RedRidingHood.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/RedRidingHood.spr -------------------------------------------------------------------------------- /Templates/Platformer/data/RedRidingHood_fm2.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/RedRidingHood_fm2.spr -------------------------------------------------------------------------------- /Templates/Platformer/data/Right_Stomp.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/Right_Stomp.iff -------------------------------------------------------------------------------- /Templates/Platformer/data/orbitron_15.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/orbitron_15.fnt -------------------------------------------------------------------------------- /Templates/Platformer/data/orbitron_15.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/orbitron_15.iff -------------------------------------------------------------------------------- /Templates/Platformer/data/select-granted-05.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/select-granted-05.iff -------------------------------------------------------------------------------- /Templates/Platformer/data/select-granted-06.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/data/select-granted-06.iff -------------------------------------------------------------------------------- /Templates/Platformer/level_display_gradients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/level_display_gradients.c -------------------------------------------------------------------------------- /Templates/Platformer/level_display_gradients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/level_display_gradients.h -------------------------------------------------------------------------------- /Templates/Platformer/level_display_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/level_display_loop.c -------------------------------------------------------------------------------- /Templates/Platformer/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/palettes.h -------------------------------------------------------------------------------- /Templates/Platformer/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Platformer/settings.h -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure.ilbm -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure.text -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/anims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/anims.c -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/anims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/anims.h -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets.h -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Character_Sheet.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Character_Sheet.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Character_Sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Character_Sheet.png -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/MouseSheet1.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/MouseSheet1.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Pixel16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Pixel16.js -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Pixel16.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Pixel16.tsx -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Pixel16_Sheet.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Pixel16_Sheet.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Pixel16_Sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Pixel16_Sheet.png -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/assets/Waterfall.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/assets/Waterfall.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/collisions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/collisions.c -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/collisions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/collisions.h -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/Character.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/Character.spr -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/MousePointers1.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/MousePointers1.spr -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/Pixel16.tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/Pixel16.tls -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/Pixel16/Gameobjects.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/Pixel16/Gameobjects.obj -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/Pixel16/Tilemap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/Pixel16/Tilemap.map -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/orbitron_15.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/orbitron_15.fnt -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/orbitron_15.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/orbitron_15.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/select-granted-05.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/select-granted-05.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/select-granted-06.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/select-granted-06.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/walls-beautiful_world.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/walls-beautiful_world.mod -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/waterfall.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/waterfall.iff -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/data/waterfall.sht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/data/waterfall.sht -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/level_display_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/level_display_loop.c -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/palettes.h -------------------------------------------------------------------------------- /Templates/Top-Down_Adventure/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Templates/Top-Down_Adventure/settings.h -------------------------------------------------------------------------------- /Tools/BOBSheeter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/BOBSheeter -------------------------------------------------------------------------------- /Tools/ConvertMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/ConvertMap -------------------------------------------------------------------------------- /Tools/ConvertTiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/ConvertTiles -------------------------------------------------------------------------------- /Tools/SpriteBankMerger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/SpriteBankMerger -------------------------------------------------------------------------------- /Tools/SpriteBanker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/SpriteBanker -------------------------------------------------------------------------------- /Tools/src/BOBSheeter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/BOBSheeter/main.c -------------------------------------------------------------------------------- /Tools/src/BOBSheeter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/BOBSheeter/makefile -------------------------------------------------------------------------------- /Tools/src/ConvertMap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertMap/main.c -------------------------------------------------------------------------------- /Tools/src/ConvertMap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertMap/makefile -------------------------------------------------------------------------------- /Tools/src/ConvertMap/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertMap/utility.c -------------------------------------------------------------------------------- /Tools/src/ConvertMap/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertMap/utility.h -------------------------------------------------------------------------------- /Tools/src/ConvertTiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertTiles/main.c -------------------------------------------------------------------------------- /Tools/src/ConvertTiles/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/ConvertTiles/makefile -------------------------------------------------------------------------------- /Tools/src/SpriteBankMerger/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/SpriteBankMerger/main.c -------------------------------------------------------------------------------- /Tools/src/SpriteBankMerger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/SpriteBankMerger/makefile -------------------------------------------------------------------------------- /Tools/src/SpriteBanker/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/SpriteBanker/main.c -------------------------------------------------------------------------------- /Tools/src/SpriteBanker/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/Tools/src/SpriteBanker/makefile -------------------------------------------------------------------------------- /ackstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/ackstring.c -------------------------------------------------------------------------------- /ackstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/ackstring.h -------------------------------------------------------------------------------- /assets_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/assets_editor.c -------------------------------------------------------------------------------- /assets_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/assets_editor.h -------------------------------------------------------------------------------- /bitmap_selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/bitmap_selector.c -------------------------------------------------------------------------------- /bitmap_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/bitmap_selector.h -------------------------------------------------------------------------------- /bobsheet_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/bobsheet_creator.c -------------------------------------------------------------------------------- /bobsheet_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/bobsheet_creator.h -------------------------------------------------------------------------------- /chunky_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/chunky_image.c -------------------------------------------------------------------------------- /chunky_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/chunky_image.h -------------------------------------------------------------------------------- /color_gadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/color_gadget.c -------------------------------------------------------------------------------- /color_gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/color_gadget.h -------------------------------------------------------------------------------- /color_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/color_palette.c -------------------------------------------------------------------------------- /color_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/color_palette.h -------------------------------------------------------------------------------- /display_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/display_creator.c -------------------------------------------------------------------------------- /display_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/display_creator.h -------------------------------------------------------------------------------- /dosupernew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/dosupernew.c -------------------------------------------------------------------------------- /dosupernew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/dosupernew.h -------------------------------------------------------------------------------- /dtpicdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/dtpicdisplay.c -------------------------------------------------------------------------------- /dtpicdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/dtpicdisplay.h -------------------------------------------------------------------------------- /editor_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/editor_settings.c -------------------------------------------------------------------------------- /editor_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/editor_settings.h -------------------------------------------------------------------------------- /game_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/game_settings.c -------------------------------------------------------------------------------- /game_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/game_settings.h -------------------------------------------------------------------------------- /gamefont_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/gamefont_creator.c -------------------------------------------------------------------------------- /gamefont_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/gamefont_creator.h -------------------------------------------------------------------------------- /image_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_display.c -------------------------------------------------------------------------------- /image_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_display.h -------------------------------------------------------------------------------- /image_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_editor.c -------------------------------------------------------------------------------- /image_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_editor.h -------------------------------------------------------------------------------- /image_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_spec.c -------------------------------------------------------------------------------- /image_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/image_spec.h -------------------------------------------------------------------------------- /includes/SDI_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_compiler.h -------------------------------------------------------------------------------- /includes/SDI_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_hook.h -------------------------------------------------------------------------------- /includes/SDI_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_interrupt.h -------------------------------------------------------------------------------- /includes/SDI_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_lib.h -------------------------------------------------------------------------------- /includes/SDI_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_misc.h -------------------------------------------------------------------------------- /includes/SDI_stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/SDI_stdarg.h -------------------------------------------------------------------------------- /includes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/includes/readme.md -------------------------------------------------------------------------------- /integer_gadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/integer_gadget.c -------------------------------------------------------------------------------- /integer_gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/integer_gadget.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/makefile -------------------------------------------------------------------------------- /new_project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/new_project.c -------------------------------------------------------------------------------- /new_project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/new_project.h -------------------------------------------------------------------------------- /palette_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/palette_editor.c -------------------------------------------------------------------------------- /palette_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/palette_editor.h -------------------------------------------------------------------------------- /palette_selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/palette_selector.c -------------------------------------------------------------------------------- /palette_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/palette_selector.h -------------------------------------------------------------------------------- /popasl_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/popasl_string.c -------------------------------------------------------------------------------- /popasl_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/popasl_string.h -------------------------------------------------------------------------------- /spritebank_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/spritebank_creator.c -------------------------------------------------------------------------------- /spritebank_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/spritebank_creator.h -------------------------------------------------------------------------------- /tilemap_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tilemap_creator.c -------------------------------------------------------------------------------- /tilemap_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tilemap_creator.h -------------------------------------------------------------------------------- /tileset_creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tileset_creator.c -------------------------------------------------------------------------------- /tileset_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tileset_creator.h -------------------------------------------------------------------------------- /toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/toolbar.c -------------------------------------------------------------------------------- /toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/toolbar.h -------------------------------------------------------------------------------- /tooltypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tooltypes.c -------------------------------------------------------------------------------- /tooltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/tooltypes.h -------------------------------------------------------------------------------- /utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/utility.c -------------------------------------------------------------------------------- /utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpyre/Sevgi_Engine/HEAD/utility.h --------------------------------------------------------------------------------