├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── FindSDL2.cmake ├── FindSDL2_Image.cmake └── tests.md ├── data ├── console_font.png ├── gfx │ ├── additional-skill-icons.png │ ├── city │ │ └── scape │ │ │ └── roads.png │ ├── combat │ │ └── misc-tiles.png │ ├── main │ │ └── cursors.png │ ├── static │ │ ├── help-backdrop.png │ │ ├── message-left.png │ │ └── message-right.png │ └── units │ │ ├── props-empty.png │ │ ├── props.png │ │ ├── skill-icons.png │ │ └── special-things.png ├── lbx │ └── .gitignore ├── status.dat └── yaml │ ├── buildings.yaml │ ├── english.yaml │ ├── help.yaml │ ├── levels.yaml │ ├── races.yaml │ ├── skills.yaml │ ├── spells.yaml │ ├── units.yaml │ └── wizards.yaml ├── docs ├── help.txt ├── lbx │ ├── fonts.md │ ├── gfx.md │ ├── help.md │ ├── terrain.md │ └── terrtype.md ├── screenshots │ ├── screenshot-alchemy.png │ ├── screenshot-armies-items.png │ ├── screenshot-armies.png │ ├── screenshot-army.png │ ├── screenshot-astrologer.png │ ├── screenshot-cartographer.png │ ├── screenshot-cities.png │ ├── screenshot-city.png │ ├── screenshot-combat.png │ ├── screenshot-diplomacy.png │ ├── screenshot-historian.png │ ├── screenshot-info-menu.png │ ├── screenshot-intro.png │ ├── screenshot-item-craft-charges.png │ ├── screenshot-item-craft.png │ ├── screenshot-load.png │ ├── screenshot-magic.png │ ├── screenshot-main.png │ ├── screenshot-merchant.png │ ├── screenshot-message.png │ ├── screenshot-mirror.png │ ├── screenshot-new-game.png │ ├── screenshot-options.png │ ├── screenshot-outpost.png │ ├── screenshot-production.png │ ├── screenshot-research.png │ ├── screenshot-spellbook.png │ ├── screenshot-start.png │ └── screenshot-unit.png └── test.yaml ├── libs ├── SDL2.framework │ ├── Headers │ ├── Resources │ ├── SDL2 │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── 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_macosx.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.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_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.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_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── SDL2 │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── SDL2_image.framework │ ├── Frameworks │ ├── Headers │ ├── Resources │ ├── SDL2_image │ └── Versions │ │ ├── A │ │ ├── Frameworks │ │ │ └── webp.framework │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── webp │ │ │ │ └── Current │ │ │ │ └── webp │ │ ├── Headers │ │ │ └── SDL_image.h │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── SDL2_image │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── fltk │ ├── include │ │ └── FL │ │ │ ├── Enumerations.H │ │ │ ├── Fl.H │ │ │ ├── Fl_Adjuster.H │ │ │ ├── Fl_BMP_Image.H │ │ │ ├── Fl_Bitmap.H │ │ │ ├── Fl_Box.H │ │ │ ├── Fl_Browser.H │ │ │ ├── Fl_Browser_.H │ │ │ ├── Fl_Button.H │ │ │ ├── Fl_Cairo.H │ │ │ ├── Fl_Cairo_Window.H │ │ │ ├── Fl_Chart.H │ │ │ ├── Fl_Check_Browser.H │ │ │ ├── Fl_Check_Button.H │ │ │ ├── Fl_Choice.H │ │ │ ├── Fl_Clock.H │ │ │ ├── Fl_Color_Chooser.H │ │ │ ├── Fl_Copy_Surface.H │ │ │ ├── Fl_Counter.H │ │ │ ├── Fl_Device.H │ │ │ ├── Fl_Dial.H │ │ │ ├── Fl_Double_Window.H │ │ │ ├── Fl_Export.H │ │ │ ├── Fl_File_Browser.H │ │ │ ├── Fl_File_Chooser.H │ │ │ ├── Fl_File_Icon.H │ │ │ ├── Fl_File_Input.H │ │ │ ├── Fl_Fill_Dial.H │ │ │ ├── Fl_Fill_Slider.H │ │ │ ├── Fl_Float_Input.H │ │ │ ├── Fl_FormsBitmap.H │ │ │ ├── Fl_FormsPixmap.H │ │ │ ├── Fl_Free.H │ │ │ ├── Fl_GIF_Image.H │ │ │ ├── Fl_Gl_Window.H │ │ │ ├── Fl_Group.H │ │ │ ├── Fl_Help_Dialog.H │ │ │ ├── Fl_Help_View.H │ │ │ ├── Fl_Hold_Browser.H │ │ │ ├── Fl_Hor_Fill_Slider.H │ │ │ ├── Fl_Hor_Nice_Slider.H │ │ │ ├── Fl_Hor_Slider.H │ │ │ ├── Fl_Hor_Value_Slider.H │ │ │ ├── Fl_Image.H │ │ │ ├── Fl_Image_Surface.H │ │ │ ├── Fl_Input.H │ │ │ ├── Fl_Input_.H │ │ │ ├── Fl_Input_Choice.H │ │ │ ├── Fl_Int_Input.H │ │ │ ├── Fl_JPEG_Image.H │ │ │ ├── Fl_Light_Button.H │ │ │ ├── Fl_Line_Dial.H │ │ │ ├── Fl_Menu.H │ │ │ ├── Fl_Menu_.H │ │ │ ├── Fl_Menu_Bar.H │ │ │ ├── Fl_Menu_Button.H │ │ │ ├── Fl_Menu_Item.H │ │ │ ├── Fl_Menu_Window.H │ │ │ ├── Fl_Multi_Browser.H │ │ │ ├── Fl_Multi_Label.H │ │ │ ├── Fl_Multiline_Input.H │ │ │ ├── Fl_Multiline_Output.H │ │ │ ├── Fl_Native_File_Chooser.H │ │ │ ├── Fl_Nice_Slider.H │ │ │ ├── Fl_Object.H │ │ │ ├── Fl_Output.H │ │ │ ├── Fl_Overlay_Window.H │ │ │ ├── Fl_PNG_Image.H │ │ │ ├── Fl_PNM_Image.H │ │ │ ├── Fl_Pack.H │ │ │ ├── Fl_Paged_Device.H │ │ │ ├── Fl_Pixmap.H │ │ │ ├── Fl_Plugin.H │ │ │ ├── Fl_Positioner.H │ │ │ ├── Fl_PostScript.H │ │ │ ├── Fl_Preferences.H │ │ │ ├── Fl_Printer.H │ │ │ ├── Fl_Progress.H │ │ │ ├── Fl_RGB_Image.H │ │ │ ├── Fl_Radio_Button.H │ │ │ ├── Fl_Radio_Light_Button.H │ │ │ ├── Fl_Radio_Round_Button.H │ │ │ ├── Fl_Repeat_Button.H │ │ │ ├── Fl_Return_Button.H │ │ │ ├── Fl_Roller.H │ │ │ ├── Fl_Round_Button.H │ │ │ ├── Fl_Round_Clock.H │ │ │ ├── Fl_Scroll.H │ │ │ ├── Fl_Scrollbar.H │ │ │ ├── Fl_Secret_Input.H │ │ │ ├── Fl_Select_Browser.H │ │ │ ├── Fl_Shared_Image.H │ │ │ ├── Fl_Simple_Counter.H │ │ │ ├── Fl_Single_Window.H │ │ │ ├── Fl_Slider.H │ │ │ ├── Fl_Spinner.H │ │ │ ├── Fl_Sys_Menu_Bar.H │ │ │ ├── Fl_Table.H │ │ │ ├── Fl_Table_Row.H │ │ │ ├── Fl_Tabs.H │ │ │ ├── Fl_Text_Buffer.H │ │ │ ├── Fl_Text_Display.H │ │ │ ├── Fl_Text_Editor.H │ │ │ ├── Fl_Tile.H │ │ │ ├── Fl_Tiled_Image.H │ │ │ ├── Fl_Timer.H │ │ │ ├── Fl_Toggle_Button.H │ │ │ ├── Fl_Toggle_Light_Button.H │ │ │ ├── Fl_Toggle_Round_Button.H │ │ │ ├── Fl_Tooltip.H │ │ │ ├── Fl_Tree.H │ │ │ ├── Fl_Tree_Item.H │ │ │ ├── Fl_Tree_Item_Array.H │ │ │ ├── Fl_Tree_Prefs.H │ │ │ ├── Fl_Valuator.H │ │ │ ├── Fl_Value_Input.H │ │ │ ├── Fl_Value_Output.H │ │ │ ├── Fl_Value_Slider.H │ │ │ ├── Fl_Widget.H │ │ │ ├── Fl_Window.H │ │ │ ├── Fl_Wizard.H │ │ │ ├── Fl_XBM_Image.H │ │ │ ├── Fl_XPM_Image.H │ │ │ ├── Makefile.in │ │ │ ├── README.Xcode │ │ │ ├── abi-version.h │ │ │ ├── dirent.h │ │ │ ├── filename.H │ │ │ ├── fl_ask.H │ │ │ ├── fl_draw.H │ │ │ ├── fl_message.H │ │ │ ├── fl_show_colormap.H │ │ │ ├── fl_show_input.H │ │ │ ├── fl_types.h │ │ │ ├── fl_utf8.h │ │ │ ├── forms.H │ │ │ ├── gl.h │ │ │ ├── gl2opengl.h │ │ │ ├── gl_draw.H │ │ │ ├── glu.h │ │ │ ├── glut.H │ │ │ ├── mac.H │ │ │ ├── math.h │ │ │ ├── names.h │ │ │ ├── win32.H │ │ │ └── x.H │ └── lib │ │ └── win_x64 │ │ ├── fltk.lib │ │ ├── fltk_forms.lib │ │ ├── fltk_gl.lib │ │ ├── fltk_images.lib │ │ ├── fltk_jpeg.lib │ │ ├── fltk_png.lib │ │ └── fltk_z.lib ├── sdl2 │ └── win │ │ ├── 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.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── 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_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.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_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 │ │ └── lib │ │ ├── x64 │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── SDL2main.lib │ │ ├── SDL2test.lib │ │ ├── libjpeg-9.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-7.dll │ │ └── zlib1.dll │ │ └── x86 │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── SDL2main.lib │ │ ├── SDL2test.lib │ │ ├── libjpeg-9.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-7.dll │ │ └── zlib1.dll └── yaml │ ├── include │ └── yaml-cpp │ │ ├── anchor.h │ │ ├── binary.h │ │ ├── contrib │ │ ├── anchordict.h │ │ └── graphbuilder.h │ │ ├── dll.h │ │ ├── emitfromevents.h │ │ ├── emitter.h │ │ ├── emitterdef.h │ │ ├── emittermanip.h │ │ ├── emitterstyle.h │ │ ├── eventhandler.h │ │ ├── exceptions.h │ │ ├── mark.h │ │ ├── node │ │ ├── convert.h │ │ ├── detail │ │ │ ├── bool_type.h │ │ │ ├── impl.h │ │ │ ├── iterator.h │ │ │ ├── iterator_fwd.h │ │ │ ├── memory.h │ │ │ ├── node.h │ │ │ ├── node_data.h │ │ │ ├── node_iterator.h │ │ │ └── node_ref.h │ │ ├── emit.h │ │ ├── impl.h │ │ ├── iterator.h │ │ ├── node.h │ │ ├── parse.h │ │ ├── ptr.h │ │ └── type.h │ │ ├── noncopyable.h │ │ ├── null.h │ │ ├── ostream_wrapper.h │ │ ├── parser.h │ │ ├── stlemitter.h │ │ ├── traits.h │ │ └── yaml.h │ └── lib │ ├── linux │ └── libyaml-cpp.a │ ├── osx │ └── libyaml-cpp.a │ ├── win_x64 │ ├── yaml-cpp.dll │ └── yaml-cpp.lib │ └── win_x86 │ ├── yaml-cpp.dll │ └── yaml-cpp.lib ├── projects ├── vs2017 │ ├── Code │ │ ├── Code.vcxitems │ │ └── Code.vcxitems.filters │ ├── Configuration.props │ ├── LbxLibrary │ │ ├── LbxLibrary.vcxproj │ │ └── LbxLibrary.vcxproj.filters │ ├── LbxViewer │ │ ├── LbxViewer.vcxproj │ │ └── LbxViewer.vcxproj.filters │ ├── OpenMoM.sln │ ├── OpenMoM │ │ ├── OpenMoM.vcxproj │ │ ├── OpenMoM.vcxproj.filters │ │ └── OpenMoM.vcxproj.user │ └── Tests │ │ ├── Tests.vcxproj │ │ └── Tests.vcxproj.filters └── xcode │ ├── .gitignore │ ├── Config.xcconfig │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── OpenMoM-Info.plist │ ├── OpenMoM.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── OpenMoM.xcscheme │ ├── ccache │ ├── ccache-clang │ └── ccache-clang++ │ └── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings ├── src ├── CMakeLists.txt ├── common │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Common.h │ ├── Enums.h │ ├── Typedefs.h │ ├── Types.h │ ├── Util.cpp │ ├── Util.h │ ├── fmt │ │ ├── chrono.h │ │ ├── color.h │ │ ├── core.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── ostream.h │ │ ├── posix.cc │ │ ├── posix.h │ │ ├── printf.h │ │ └── ranges.h │ ├── mystrings.cpp │ └── mystrings.h ├── editor │ └── main.cpp ├── game │ ├── CMakeLists.txt │ ├── Game.cpp │ ├── Game.h │ ├── Settings.cpp │ ├── Settings.h │ ├── cities │ │ ├── Buildings.cpp │ │ ├── Buildings.h │ │ ├── CMakeLists.txt │ │ ├── City.cpp │ │ └── City.h │ ├── combat │ │ ├── CMakeLists.txt │ │ ├── Combat.cpp │ │ ├── Combat.h │ │ ├── CombatMap.cpp │ │ ├── CombatMap.h │ │ ├── CombatMechanics.cpp │ │ ├── CombatMechanics.h │ │ ├── CombatUtils.cpp │ │ └── CombatUtils.h │ ├── mechanics │ │ ├── CMakeLists.txt │ │ ├── CityMechanics.cpp │ │ ├── CityMechanics.h │ │ ├── EventMechanics.cpp │ │ ├── EventMechanics.h │ │ ├── LairMechanics.cpp │ │ ├── LairMechanics.h │ │ ├── MapMechanics.cpp │ │ ├── MapMechanics.h │ │ ├── PlayerMechanics.cpp │ │ ├── PlayerMechanics.h │ │ ├── SpellMechanics.cpp │ │ ├── SpellMechanics.h │ │ ├── ValuesMechanics.cpp │ │ └── ValuesMechanics.h │ ├── players │ │ ├── CMakeLists.txt │ │ ├── Diplomacy.cpp │ │ ├── Diplomacy.h │ │ ├── LocalPlayer.cpp │ │ ├── LocalPlayer.h │ │ ├── Messages.cpp │ │ ├── Messages.h │ │ ├── Player.cpp │ │ ├── Player.h │ │ ├── Race.cpp │ │ ├── Race.h │ │ └── Wizard.h │ ├── skills │ │ ├── CMakeLists.txt │ │ ├── Effects.cpp │ │ ├── Effects.h │ │ ├── Modifiers.cpp │ │ ├── Modifiers.h │ │ ├── Skill.cpp │ │ ├── Skill.h │ │ ├── SkillSet.cpp │ │ ├── SkillSet.h │ │ ├── UnitEffects.cpp │ │ └── UnitEffects.h │ ├── spells │ │ ├── CMakeLists.txt │ │ ├── CombatSpells.cpp │ │ ├── CombatSpells.h │ │ ├── SpellBook.cpp │ │ ├── SpellBook.h │ │ ├── Spells.cpp │ │ └── Spells.h │ ├── units │ │ ├── Army.cpp │ │ ├── Army.h │ │ ├── CMakeLists.txt │ │ ├── Items.cpp │ │ ├── Items.h │ │ ├── Level.cpp │ │ ├── Level.h │ │ ├── Unit.cpp │ │ ├── Unit.h │ │ ├── UnitSpec.cpp │ │ └── UnitSpec.h │ └── world │ │ ├── CMakeLists.txt │ │ ├── Pathfind.cpp │ │ ├── Pathfind.h │ │ ├── Places.cpp │ │ ├── Places.h │ │ ├── Tile.cpp │ │ ├── Tile.h │ │ ├── World.cpp │ │ ├── World.h │ │ ├── WorldGenerator.cpp │ │ └── WorldGenerator.h ├── gfx │ ├── CMakeLists.txt │ ├── ColorMap.cpp │ ├── ColorMap.h │ ├── Font.cpp │ ├── Font.h │ ├── GUISettings.cpp │ ├── GUISettings.h │ ├── Gfx.cpp │ ├── Gfx.h │ ├── LBX.cpp │ ├── LBX.h │ ├── LBXRepository.cpp │ ├── LBXRepository.h │ ├── SDLHelper.cpp │ ├── SDLHelper.h │ ├── Texture.cpp │ ├── Texture.h │ └── filters │ │ ├── Hqx.h │ │ ├── hq2x.cpp │ │ ├── hq3x.cpp │ │ ├── hq4x.cpp │ │ └── hqx_init.cpp ├── i18n │ ├── CMakeLists.txt │ ├── Help.cpp │ ├── Help.h │ ├── Localization.cpp │ └── Localization.h ├── lbx │ ├── lbxlib.cpp │ ├── lbxlib.h │ └── main.cpp ├── main.cpp ├── platform │ ├── CMakeLists.txt │ ├── Path.cpp │ ├── Path.h │ ├── Platform.h │ ├── macos │ │ ├── osx.mm │ │ └── precompiled.pch │ ├── unix.cpp │ └── windows │ │ ├── Precompiled.cpp │ │ ├── Precompiled.h │ │ ├── dirent.h │ │ ├── main.cpp │ │ └── windows.cpp ├── save │ ├── CMakeLists.txt │ ├── Data.cpp │ ├── Data.h │ ├── OriginalSave.cpp │ ├── OriginalSave.h │ ├── YAML.cpp │ └── YAML.h ├── tests │ ├── catch.hpp │ ├── main.cpp │ ├── tests.cpp │ └── tests.h └── ui │ ├── Buttons.cpp │ ├── Buttons.h │ ├── CMakeLists.txt │ ├── EventListener.h │ ├── GfxData.cpp │ ├── GfxData.h │ ├── View.cpp │ ├── View.h │ ├── ViewManager.cpp │ ├── ViewManager.h │ ├── animations │ ├── Animations.cpp │ ├── Animations.h │ ├── CMakeLists.txt │ ├── SpellEffectAnim.cpp │ └── SpellEffectAnim.h │ ├── parts │ ├── BookView.cpp │ ├── BookView.h │ ├── CMakeLists.txt │ ├── CityScape.cpp │ ├── CityScape.h │ ├── CommonDraw.cpp │ ├── CommonDraw.h │ ├── Dialogs.cpp │ ├── Dialogs.h │ ├── DrawQueue.cpp │ ├── DrawQueue.h │ ├── DrawQueueBasic.h │ ├── MiniMap.cpp │ ├── MiniMap.h │ ├── SkillDraw.cpp │ ├── SkillDraw.h │ ├── UnitDraw.cpp │ ├── UnitDraw.h │ ├── Viewport.cpp │ └── Viewport.h │ └── views │ ├── AlchemyView.cpp │ ├── AlchemyView.h │ ├── ArmiesItemsView.cpp │ ├── ArmiesItemsView.h │ ├── ArmiesView.cpp │ ├── ArmiesView.h │ ├── ArmyView.cpp │ ├── ArmyView.h │ ├── AstrologerView.cpp │ ├── AstrologerView.h │ ├── CMakeLists.txt │ ├── CartographerView.cpp │ ├── CartographerView.h │ ├── CitiesView.cpp │ ├── CitiesView.h │ ├── CityView.cpp │ ├── CityView.h │ ├── CombatView.cpp │ ├── CombatView.h │ ├── ConsoleView.cpp │ ├── ConsoleView.h │ ├── DiplomacyView.cpp │ ├── DiplomacyView.h │ ├── HistorianView.cpp │ ├── HistorianView.h │ ├── InfoMenuView.cpp │ ├── InfoMenuView.h │ ├── IntroView.cpp │ ├── IntroView.h │ ├── ItemCraftChargesView.cpp │ ├── ItemCraftChargesView.h │ ├── ItemCraftView.cpp │ ├── ItemCraftView.h │ ├── LoadView.cpp │ ├── LoadView.h │ ├── MagicView.cpp │ ├── MagicView.h │ ├── MainView.cpp │ ├── MainView.h │ ├── MerchantView.cpp │ ├── MerchantView.h │ ├── MessageView.cpp │ ├── MessageView.h │ ├── MirrorView.cpp │ ├── MirrorView.h │ ├── NewGameView.cpp │ ├── NewGameView.h │ ├── OptionsView.cpp │ ├── OptionsView.h │ ├── OutpostView.cpp │ ├── OutpostView.h │ ├── ProductionView.cpp │ ├── ProductionView.h │ ├── ResearchView.cpp │ ├── ResearchView.h │ ├── SpellBookView.cpp │ ├── SpellBookView.h │ ├── StartView.cpp │ ├── StartView.h │ ├── UnitDetailView.cpp │ ├── UnitDetailView.h │ ├── debug │ ├── CMakeLists.txt │ ├── DataView.cpp │ └── DataView.h │ └── extra │ ├── CMakeLists.txt │ ├── MapEditorView.cpp │ └── MapEditorView.h └── targets └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_Image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/cmake/FindSDL2_Image.cmake -------------------------------------------------------------------------------- /cmake/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/cmake/tests.md -------------------------------------------------------------------------------- /data/console_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/console_font.png -------------------------------------------------------------------------------- /data/gfx/additional-skill-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/additional-skill-icons.png -------------------------------------------------------------------------------- /data/gfx/city/scape/roads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/city/scape/roads.png -------------------------------------------------------------------------------- /data/gfx/combat/misc-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/combat/misc-tiles.png -------------------------------------------------------------------------------- /data/gfx/main/cursors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/main/cursors.png -------------------------------------------------------------------------------- /data/gfx/static/help-backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/static/help-backdrop.png -------------------------------------------------------------------------------- /data/gfx/static/message-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/static/message-left.png -------------------------------------------------------------------------------- /data/gfx/static/message-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/static/message-right.png -------------------------------------------------------------------------------- /data/gfx/units/props-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/units/props-empty.png -------------------------------------------------------------------------------- /data/gfx/units/props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/units/props.png -------------------------------------------------------------------------------- /data/gfx/units/skill-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/units/skill-icons.png -------------------------------------------------------------------------------- /data/gfx/units/special-things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/gfx/units/special-things.png -------------------------------------------------------------------------------- /data/lbx/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /data/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/status.dat -------------------------------------------------------------------------------- /data/yaml/buildings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/buildings.yaml -------------------------------------------------------------------------------- /data/yaml/english.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/english.yaml -------------------------------------------------------------------------------- /data/yaml/help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/help.yaml -------------------------------------------------------------------------------- /data/yaml/levels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/levels.yaml -------------------------------------------------------------------------------- /data/yaml/races.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/races.yaml -------------------------------------------------------------------------------- /data/yaml/skills.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/skills.yaml -------------------------------------------------------------------------------- /data/yaml/spells.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/spells.yaml -------------------------------------------------------------------------------- /data/yaml/units.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/units.yaml -------------------------------------------------------------------------------- /data/yaml/wizards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/data/yaml/wizards.yaml -------------------------------------------------------------------------------- /docs/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/help.txt -------------------------------------------------------------------------------- /docs/lbx/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/lbx/fonts.md -------------------------------------------------------------------------------- /docs/lbx/gfx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/lbx/gfx.md -------------------------------------------------------------------------------- /docs/lbx/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/lbx/help.md -------------------------------------------------------------------------------- /docs/lbx/terrain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/lbx/terrain.md -------------------------------------------------------------------------------- /docs/lbx/terrtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/lbx/terrtype.md -------------------------------------------------------------------------------- /docs/screenshots/screenshot-alchemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-alchemy.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-armies-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-armies-items.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-armies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-armies.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-army.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-army.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-astrologer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-astrologer.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-cartographer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-cartographer.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-cities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-cities.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-city.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-combat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-combat.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-diplomacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-diplomacy.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-historian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-historian.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-info-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-info-menu.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-intro.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-item-craft-charges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-item-craft-charges.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-item-craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-item-craft.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-load.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-magic.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-main.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-merchant.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-message.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-mirror.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-new-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-new-game.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-options.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-outpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-outpost.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-production.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-research.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-spellbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-spellbook.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-start.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/screenshots/screenshot-unit.png -------------------------------------------------------------------------------- /docs/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/docs/test.yaml -------------------------------------------------------------------------------- /libs/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /libs/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/SDL2_image.framework/SDL2_image: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2_image -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/decode.h -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/encode.h -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Headers/webp/types.h -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/Resources/LICENSE.webp.txt -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/A/webp -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- 1 | Versions/Current/webp -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Headers/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Headers/SDL_image.h -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/SDL2_image -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/SDL2_image.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /libs/SDL2_image.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libs/fltk/include/FL/Enumerations.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Enumerations.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Adjuster.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Adjuster.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_BMP_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_BMP_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Bitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Bitmap.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Box.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Box.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Browser_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Browser_.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Cairo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Cairo.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Cairo_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Cairo_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Chart.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Chart.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Check_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Check_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Check_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Check_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Choice.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Clock.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Color_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Color_Chooser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Copy_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Copy_Surface.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Counter.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Device.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Dial.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Double_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Double_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Export.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Export.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_File_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_File_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_File_Chooser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_File_Icon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_File_Icon.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_File_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_File_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Fill_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Fill_Dial.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Fill_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Float_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Float_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_FormsBitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_FormsBitmap.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_FormsPixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_FormsPixmap.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Free.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Free.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_GIF_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_GIF_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Gl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Gl_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Group.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Group.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Help_Dialog.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Help_Dialog.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Help_View.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Help_View.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Hold_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Hold_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Hor_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Hor_Fill_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Hor_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Hor_Nice_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Hor_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Hor_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Hor_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Hor_Value_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Image_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Image_Surface.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Input_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Input_.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Input_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Input_Choice.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Int_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Int_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_JPEG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_JPEG_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Light_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Line_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Line_Dial.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu_.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu_Bar.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu_Item.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Menu_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Menu_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Multi_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Multi_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Multi_Label.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Multi_Label.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Multiline_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Multiline_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Multiline_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Multiline_Output.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Native_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Native_File_Chooser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Nice_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Object.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Object.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Output.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Overlay_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Overlay_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_PNG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_PNG_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_PNM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_PNM_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Pack.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Pack.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Paged_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Paged_Device.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Pixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Pixmap.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Plugin.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Plugin.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Positioner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Positioner.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_PostScript.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_PostScript.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Preferences.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Preferences.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Printer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Printer.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Progress.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Progress.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_RGB_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_RGB_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Radio_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Radio_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Radio_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Radio_Light_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Radio_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Radio_Round_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Repeat_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Repeat_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Return_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Return_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Roller.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Roller.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Round_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Round_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Round_Clock.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Scroll.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Scroll.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Scrollbar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Scrollbar.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Secret_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Secret_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Select_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Select_Browser.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Shared_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Shared_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Simple_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Simple_Counter.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Single_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Single_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Spinner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Spinner.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Sys_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Sys_Menu_Bar.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Table.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Table.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Table_Row.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Table_Row.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tabs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tabs.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Text_Buffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Text_Buffer.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Text_Display.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Text_Display.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Text_Editor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Text_Editor.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tile.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tiled_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tiled_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Timer.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Toggle_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Toggle_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Toggle_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Toggle_Light_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Toggle_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Toggle_Round_Button.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tooltip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tooltip.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tree.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tree.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tree_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tree_Item.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tree_Item_Array.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tree_Item_Array.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Tree_Prefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Tree_Prefs.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Valuator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Valuator.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Value_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Value_Input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Value_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Value_Output.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Value_Slider.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Widget.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Widget.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Window.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_Wizard.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_Wizard.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_XBM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_XBM_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Fl_XPM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Fl_XPM_Image.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/Makefile.in -------------------------------------------------------------------------------- /libs/fltk/include/FL/README.Xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/README.Xcode -------------------------------------------------------------------------------- /libs/fltk/include/FL/abi-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/abi-version.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/dirent.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/filename.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/filename.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_ask.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_ask.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_draw.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_message.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_message.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_show_colormap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_show_colormap.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_show_input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_show_input.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_types.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/fl_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/fl_utf8.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/forms.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/forms.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/gl.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/gl2opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/gl2opengl.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/gl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/gl_draw.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/glu.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/glut.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/glut.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/mac.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/mac.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/math.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/names.h -------------------------------------------------------------------------------- /libs/fltk/include/FL/win32.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/win32.H -------------------------------------------------------------------------------- /libs/fltk/include/FL/x.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/include/FL/x.H -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_forms.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_forms.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_gl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_gl.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_images.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_images.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_jpeg.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_png.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_png.lib -------------------------------------------------------------------------------- /libs/fltk/lib/win_x64/fltk_z.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/fltk/lib/win_x64/fltk_z.lib -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_assert.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_atomic.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_audio.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_bits.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_blendmode.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_clipboard.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config.h.in -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_android.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_psp.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_windows.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_copying.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_egl.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_endian.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_error.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_events.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_filesystem.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_gesture.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_haptic.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_hints.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_image.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_joystick.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_keyboard.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_keycode.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_loadso.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_log.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_main.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_messagebox.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_mouse.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_mutex.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_name.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengl.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles2.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_pixels.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_platform.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_power.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_rect.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_render.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_revision.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_rwops.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_scancode.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_shape.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_stdinc.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_surface.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_system.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_syswm.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_assert.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_common.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_compare.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_font.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_harness.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_images.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_log.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_md5.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_memory.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_test_random.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_thread.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_timer.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_touch.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_types.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_version.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_video.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/SDL_vulkan.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/begin_code.h -------------------------------------------------------------------------------- /libs/sdl2/win/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/include/close_code.h -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/LICENSE.png.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/LICENSE.tiff.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/LICENSE.webp.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/LICENSE.zlib.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2_image.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2_image.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/libjpeg-9.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/libpng16-16.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/libtiff-5.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/libwebp-7.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x64/zlib1.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/LICENSE.png.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/LICENSE.tiff.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/LICENSE.webp.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/LICENSE.zlib.txt -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2_image.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2_image.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/libjpeg-9.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/libpng16-16.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/libtiff-5.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/libwebp-7.dll -------------------------------------------------------------------------------- /libs/sdl2/win/lib/x86/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/sdl2/win/lib/x86/zlib1.dll -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/anchor.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/binary.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/contrib/anchordict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/contrib/anchordict.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/contrib/graphbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/contrib/graphbuilder.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/dll.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/emitfromevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/emitfromevents.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/emitter.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/emitterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/emitterdef.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/emittermanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/emittermanip.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/emitterstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/emitterstyle.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/eventhandler.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/exceptions.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/mark.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/convert.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/bool_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/bool_type.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/impl.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/iterator.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/iterator_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/iterator_fwd.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/memory.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/node.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/node_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/node_data.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/node_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/node_iterator.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/detail/node_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/detail/node_ref.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/emit.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/impl.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/iterator.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/node.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/parse.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/ptr.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/node/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/node/type.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/noncopyable.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/null.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/ostream_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/ostream_wrapper.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/parser.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/stlemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/stlemitter.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/traits.h -------------------------------------------------------------------------------- /libs/yaml/include/yaml-cpp/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/include/yaml-cpp/yaml.h -------------------------------------------------------------------------------- /libs/yaml/lib/linux/libyaml-cpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/linux/libyaml-cpp.a -------------------------------------------------------------------------------- /libs/yaml/lib/osx/libyaml-cpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/osx/libyaml-cpp.a -------------------------------------------------------------------------------- /libs/yaml/lib/win_x64/yaml-cpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/win_x64/yaml-cpp.dll -------------------------------------------------------------------------------- /libs/yaml/lib/win_x64/yaml-cpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/win_x64/yaml-cpp.lib -------------------------------------------------------------------------------- /libs/yaml/lib/win_x86/yaml-cpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/win_x86/yaml-cpp.dll -------------------------------------------------------------------------------- /libs/yaml/lib/win_x86/yaml-cpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/libs/yaml/lib/win_x86/yaml-cpp.lib -------------------------------------------------------------------------------- /projects/vs2017/Code/Code.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/Code/Code.vcxitems -------------------------------------------------------------------------------- /projects/vs2017/Code/Code.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/Code/Code.vcxitems.filters -------------------------------------------------------------------------------- /projects/vs2017/Configuration.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/Configuration.props -------------------------------------------------------------------------------- /projects/vs2017/LbxLibrary/LbxLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/LbxLibrary/LbxLibrary.vcxproj -------------------------------------------------------------------------------- /projects/vs2017/LbxLibrary/LbxLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/LbxLibrary/LbxLibrary.vcxproj.filters -------------------------------------------------------------------------------- /projects/vs2017/LbxViewer/LbxViewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/LbxViewer/LbxViewer.vcxproj -------------------------------------------------------------------------------- /projects/vs2017/LbxViewer/LbxViewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/LbxViewer/LbxViewer.vcxproj.filters -------------------------------------------------------------------------------- /projects/vs2017/OpenMoM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/OpenMoM.sln -------------------------------------------------------------------------------- /projects/vs2017/OpenMoM/OpenMoM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/OpenMoM/OpenMoM.vcxproj -------------------------------------------------------------------------------- /projects/vs2017/OpenMoM/OpenMoM.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/OpenMoM/OpenMoM.vcxproj.filters -------------------------------------------------------------------------------- /projects/vs2017/OpenMoM/OpenMoM.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/OpenMoM/OpenMoM.vcxproj.user -------------------------------------------------------------------------------- /projects/vs2017/Tests/Tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/Tests/Tests.vcxproj -------------------------------------------------------------------------------- /projects/vs2017/Tests/Tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/vs2017/Tests/Tests.vcxproj.filters -------------------------------------------------------------------------------- /projects/xcode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/.gitignore -------------------------------------------------------------------------------- /projects/xcode/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/Config.xcconfig -------------------------------------------------------------------------------- /projects/xcode/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /projects/xcode/OpenMoM-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/OpenMoM-Info.plist -------------------------------------------------------------------------------- /projects/xcode/OpenMoM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/OpenMoM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/xcode/OpenMoM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/OpenMoM.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/xcode/OpenMoM.xcodeproj/xcshareddata/xcschemes/OpenMoM.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/OpenMoM.xcodeproj/xcshareddata/xcschemes/OpenMoM.xcscheme -------------------------------------------------------------------------------- /projects/xcode/ccache/ccache-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/ccache/ccache-clang -------------------------------------------------------------------------------- /projects/xcode/ccache/ccache-clang++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/ccache/ccache-clang++ -------------------------------------------------------------------------------- /projects/xcode/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/projects/xcode/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /projects/xcode/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Common.cpp -------------------------------------------------------------------------------- /src/common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Common.h -------------------------------------------------------------------------------- /src/common/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Enums.h -------------------------------------------------------------------------------- /src/common/Typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Typedefs.h -------------------------------------------------------------------------------- /src/common/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Types.h -------------------------------------------------------------------------------- /src/common/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Util.cpp -------------------------------------------------------------------------------- /src/common/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/Util.h -------------------------------------------------------------------------------- /src/common/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/chrono.h -------------------------------------------------------------------------------- /src/common/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/color.h -------------------------------------------------------------------------------- /src/common/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/core.h -------------------------------------------------------------------------------- /src/common/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/format.cc -------------------------------------------------------------------------------- /src/common/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/format.h -------------------------------------------------------------------------------- /src/common/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/ostream.h -------------------------------------------------------------------------------- /src/common/fmt/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/posix.cc -------------------------------------------------------------------------------- /src/common/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/posix.h -------------------------------------------------------------------------------- /src/common/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/printf.h -------------------------------------------------------------------------------- /src/common/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/fmt/ranges.h -------------------------------------------------------------------------------- /src/common/mystrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/mystrings.cpp -------------------------------------------------------------------------------- /src/common/mystrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/common/mystrings.h -------------------------------------------------------------------------------- /src/editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/editor/main.cpp -------------------------------------------------------------------------------- /src/game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/Game.cpp -------------------------------------------------------------------------------- /src/game/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/Game.h -------------------------------------------------------------------------------- /src/game/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/Settings.cpp -------------------------------------------------------------------------------- /src/game/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/Settings.h -------------------------------------------------------------------------------- /src/game/cities/Buildings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/cities/Buildings.cpp -------------------------------------------------------------------------------- /src/game/cities/Buildings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/cities/Buildings.h -------------------------------------------------------------------------------- /src/game/cities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/cities/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/cities/City.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/cities/City.cpp -------------------------------------------------------------------------------- /src/game/cities/City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/cities/City.h -------------------------------------------------------------------------------- /src/game/combat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/combat/Combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/Combat.cpp -------------------------------------------------------------------------------- /src/game/combat/Combat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/Combat.h -------------------------------------------------------------------------------- /src/game/combat/CombatMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatMap.cpp -------------------------------------------------------------------------------- /src/game/combat/CombatMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatMap.h -------------------------------------------------------------------------------- /src/game/combat/CombatMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatMechanics.cpp -------------------------------------------------------------------------------- /src/game/combat/CombatMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatMechanics.h -------------------------------------------------------------------------------- /src/game/combat/CombatUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatUtils.cpp -------------------------------------------------------------------------------- /src/game/combat/CombatUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/combat/CombatUtils.h -------------------------------------------------------------------------------- /src/game/mechanics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/mechanics/CityMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/CityMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/CityMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/CityMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/EventMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/EventMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/EventMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/EventMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/LairMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/LairMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/LairMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/LairMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/MapMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/MapMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/MapMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/MapMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/PlayerMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/PlayerMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/PlayerMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/PlayerMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/SpellMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/SpellMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/SpellMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/SpellMechanics.h -------------------------------------------------------------------------------- /src/game/mechanics/ValuesMechanics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/ValuesMechanics.cpp -------------------------------------------------------------------------------- /src/game/mechanics/ValuesMechanics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/mechanics/ValuesMechanics.h -------------------------------------------------------------------------------- /src/game/players/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/players/Diplomacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Diplomacy.cpp -------------------------------------------------------------------------------- /src/game/players/Diplomacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Diplomacy.h -------------------------------------------------------------------------------- /src/game/players/LocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/LocalPlayer.cpp -------------------------------------------------------------------------------- /src/game/players/LocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/LocalPlayer.h -------------------------------------------------------------------------------- /src/game/players/Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Messages.cpp -------------------------------------------------------------------------------- /src/game/players/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Messages.h -------------------------------------------------------------------------------- /src/game/players/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Player.cpp -------------------------------------------------------------------------------- /src/game/players/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Player.h -------------------------------------------------------------------------------- /src/game/players/Race.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Race.cpp -------------------------------------------------------------------------------- /src/game/players/Race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Race.h -------------------------------------------------------------------------------- /src/game/players/Wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/players/Wizard.h -------------------------------------------------------------------------------- /src/game/skills/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/skills/Effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Effects.cpp -------------------------------------------------------------------------------- /src/game/skills/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Effects.h -------------------------------------------------------------------------------- /src/game/skills/Modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Modifiers.cpp -------------------------------------------------------------------------------- /src/game/skills/Modifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Modifiers.h -------------------------------------------------------------------------------- /src/game/skills/Skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Skill.cpp -------------------------------------------------------------------------------- /src/game/skills/Skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/Skill.h -------------------------------------------------------------------------------- /src/game/skills/SkillSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/SkillSet.cpp -------------------------------------------------------------------------------- /src/game/skills/SkillSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/SkillSet.h -------------------------------------------------------------------------------- /src/game/skills/UnitEffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/UnitEffects.cpp -------------------------------------------------------------------------------- /src/game/skills/UnitEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/skills/UnitEffects.h -------------------------------------------------------------------------------- /src/game/spells/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/spells/CombatSpells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/CombatSpells.cpp -------------------------------------------------------------------------------- /src/game/spells/CombatSpells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/CombatSpells.h -------------------------------------------------------------------------------- /src/game/spells/SpellBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/SpellBook.cpp -------------------------------------------------------------------------------- /src/game/spells/SpellBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/SpellBook.h -------------------------------------------------------------------------------- /src/game/spells/Spells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/Spells.cpp -------------------------------------------------------------------------------- /src/game/spells/Spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/spells/Spells.h -------------------------------------------------------------------------------- /src/game/units/Army.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Army.cpp -------------------------------------------------------------------------------- /src/game/units/Army.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Army.h -------------------------------------------------------------------------------- /src/game/units/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/units/Items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Items.cpp -------------------------------------------------------------------------------- /src/game/units/Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Items.h -------------------------------------------------------------------------------- /src/game/units/Level.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/units/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Level.h -------------------------------------------------------------------------------- /src/game/units/Unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Unit.cpp -------------------------------------------------------------------------------- /src/game/units/Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/Unit.h -------------------------------------------------------------------------------- /src/game/units/UnitSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/UnitSpec.cpp -------------------------------------------------------------------------------- /src/game/units/UnitSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/units/UnitSpec.h -------------------------------------------------------------------------------- /src/game/world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/CMakeLists.txt -------------------------------------------------------------------------------- /src/game/world/Pathfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Pathfind.cpp -------------------------------------------------------------------------------- /src/game/world/Pathfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Pathfind.h -------------------------------------------------------------------------------- /src/game/world/Places.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Places.cpp -------------------------------------------------------------------------------- /src/game/world/Places.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Places.h -------------------------------------------------------------------------------- /src/game/world/Tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Tile.cpp -------------------------------------------------------------------------------- /src/game/world/Tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/Tile.h -------------------------------------------------------------------------------- /src/game/world/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/World.cpp -------------------------------------------------------------------------------- /src/game/world/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/World.h -------------------------------------------------------------------------------- /src/game/world/WorldGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/WorldGenerator.cpp -------------------------------------------------------------------------------- /src/game/world/WorldGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/game/world/WorldGenerator.h -------------------------------------------------------------------------------- /src/gfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/CMakeLists.txt -------------------------------------------------------------------------------- /src/gfx/ColorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/ColorMap.cpp -------------------------------------------------------------------------------- /src/gfx/ColorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/ColorMap.h -------------------------------------------------------------------------------- /src/gfx/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Font.cpp -------------------------------------------------------------------------------- /src/gfx/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Font.h -------------------------------------------------------------------------------- /src/gfx/GUISettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/GUISettings.cpp -------------------------------------------------------------------------------- /src/gfx/GUISettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/GUISettings.h -------------------------------------------------------------------------------- /src/gfx/Gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Gfx.cpp -------------------------------------------------------------------------------- /src/gfx/Gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Gfx.h -------------------------------------------------------------------------------- /src/gfx/LBX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/LBX.cpp -------------------------------------------------------------------------------- /src/gfx/LBX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/LBX.h -------------------------------------------------------------------------------- /src/gfx/LBXRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/LBXRepository.cpp -------------------------------------------------------------------------------- /src/gfx/LBXRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/LBXRepository.h -------------------------------------------------------------------------------- /src/gfx/SDLHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/SDLHelper.cpp -------------------------------------------------------------------------------- /src/gfx/SDLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/SDLHelper.h -------------------------------------------------------------------------------- /src/gfx/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Texture.cpp -------------------------------------------------------------------------------- /src/gfx/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/Texture.h -------------------------------------------------------------------------------- /src/gfx/filters/Hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/filters/Hqx.h -------------------------------------------------------------------------------- /src/gfx/filters/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/filters/hq2x.cpp -------------------------------------------------------------------------------- /src/gfx/filters/hq3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/filters/hq3x.cpp -------------------------------------------------------------------------------- /src/gfx/filters/hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/filters/hq4x.cpp -------------------------------------------------------------------------------- /src/gfx/filters/hqx_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/gfx/filters/hqx_init.cpp -------------------------------------------------------------------------------- /src/i18n/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/i18n/CMakeLists.txt -------------------------------------------------------------------------------- /src/i18n/Help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/i18n/Help.cpp -------------------------------------------------------------------------------- /src/i18n/Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/i18n/Help.h -------------------------------------------------------------------------------- /src/i18n/Localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/i18n/Localization.cpp -------------------------------------------------------------------------------- /src/i18n/Localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/i18n/Localization.h -------------------------------------------------------------------------------- /src/lbx/lbxlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/lbx/lbxlib.cpp -------------------------------------------------------------------------------- /src/lbx/lbxlib.h: -------------------------------------------------------------------------------- 1 | 2 | #include -------------------------------------------------------------------------------- /src/lbx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/lbx/main.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/Path.cpp -------------------------------------------------------------------------------- /src/platform/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/Path.h -------------------------------------------------------------------------------- /src/platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/Platform.h -------------------------------------------------------------------------------- /src/platform/macos/osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/macos/osx.mm -------------------------------------------------------------------------------- /src/platform/macos/precompiled.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/macos/precompiled.pch -------------------------------------------------------------------------------- /src/platform/unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/unix.cpp -------------------------------------------------------------------------------- /src/platform/windows/Precompiled.cpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Precompiled.h" 3 | -------------------------------------------------------------------------------- /src/platform/windows/Precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/windows/Precompiled.h -------------------------------------------------------------------------------- /src/platform/windows/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/windows/dirent.h -------------------------------------------------------------------------------- /src/platform/windows/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/windows/main.cpp -------------------------------------------------------------------------------- /src/platform/windows/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/platform/windows/windows.cpp -------------------------------------------------------------------------------- /src/save/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/CMakeLists.txt -------------------------------------------------------------------------------- /src/save/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/Data.cpp -------------------------------------------------------------------------------- /src/save/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/Data.h -------------------------------------------------------------------------------- /src/save/OriginalSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/OriginalSave.cpp -------------------------------------------------------------------------------- /src/save/OriginalSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/OriginalSave.h -------------------------------------------------------------------------------- /src/save/YAML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/YAML.cpp -------------------------------------------------------------------------------- /src/save/YAML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/save/YAML.h -------------------------------------------------------------------------------- /src/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/tests/catch.hpp -------------------------------------------------------------------------------- /src/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/tests/main.cpp -------------------------------------------------------------------------------- /src/tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/tests/tests.cpp -------------------------------------------------------------------------------- /src/tests/tests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "catch.hpp" 4 | 5 | -------------------------------------------------------------------------------- /src/ui/Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/Buttons.cpp -------------------------------------------------------------------------------- /src/ui/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/Buttons.h -------------------------------------------------------------------------------- /src/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/EventListener.h -------------------------------------------------------------------------------- /src/ui/GfxData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/GfxData.cpp -------------------------------------------------------------------------------- /src/ui/GfxData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/GfxData.h -------------------------------------------------------------------------------- /src/ui/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/View.cpp -------------------------------------------------------------------------------- /src/ui/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/View.h -------------------------------------------------------------------------------- /src/ui/ViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/ViewManager.cpp -------------------------------------------------------------------------------- /src/ui/ViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/ViewManager.h -------------------------------------------------------------------------------- /src/ui/animations/Animations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/animations/Animations.cpp -------------------------------------------------------------------------------- /src/ui/animations/Animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/animations/Animations.h -------------------------------------------------------------------------------- /src/ui/animations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/animations/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/animations/SpellEffectAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/animations/SpellEffectAnim.cpp -------------------------------------------------------------------------------- /src/ui/animations/SpellEffectAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/animations/SpellEffectAnim.h -------------------------------------------------------------------------------- /src/ui/parts/BookView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/BookView.cpp -------------------------------------------------------------------------------- /src/ui/parts/BookView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/BookView.h -------------------------------------------------------------------------------- /src/ui/parts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/parts/CityScape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/CityScape.cpp -------------------------------------------------------------------------------- /src/ui/parts/CityScape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/CityScape.h -------------------------------------------------------------------------------- /src/ui/parts/CommonDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/CommonDraw.cpp -------------------------------------------------------------------------------- /src/ui/parts/CommonDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/CommonDraw.h -------------------------------------------------------------------------------- /src/ui/parts/Dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/Dialogs.cpp -------------------------------------------------------------------------------- /src/ui/parts/Dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/Dialogs.h -------------------------------------------------------------------------------- /src/ui/parts/DrawQueue.cpp: -------------------------------------------------------------------------------- 1 | #include "DrawQueue.h" 2 | -------------------------------------------------------------------------------- /src/ui/parts/DrawQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/DrawQueue.h -------------------------------------------------------------------------------- /src/ui/parts/DrawQueueBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/DrawQueueBasic.h -------------------------------------------------------------------------------- /src/ui/parts/MiniMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/MiniMap.cpp -------------------------------------------------------------------------------- /src/ui/parts/MiniMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/MiniMap.h -------------------------------------------------------------------------------- /src/ui/parts/SkillDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/SkillDraw.cpp -------------------------------------------------------------------------------- /src/ui/parts/SkillDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/SkillDraw.h -------------------------------------------------------------------------------- /src/ui/parts/UnitDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/UnitDraw.cpp -------------------------------------------------------------------------------- /src/ui/parts/UnitDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/UnitDraw.h -------------------------------------------------------------------------------- /src/ui/parts/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/Viewport.cpp -------------------------------------------------------------------------------- /src/ui/parts/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/parts/Viewport.h -------------------------------------------------------------------------------- /src/ui/views/AlchemyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/AlchemyView.cpp -------------------------------------------------------------------------------- /src/ui/views/AlchemyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/AlchemyView.h -------------------------------------------------------------------------------- /src/ui/views/ArmiesItemsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmiesItemsView.cpp -------------------------------------------------------------------------------- /src/ui/views/ArmiesItemsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmiesItemsView.h -------------------------------------------------------------------------------- /src/ui/views/ArmiesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmiesView.cpp -------------------------------------------------------------------------------- /src/ui/views/ArmiesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmiesView.h -------------------------------------------------------------------------------- /src/ui/views/ArmyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmyView.cpp -------------------------------------------------------------------------------- /src/ui/views/ArmyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ArmyView.h -------------------------------------------------------------------------------- /src/ui/views/AstrologerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/AstrologerView.cpp -------------------------------------------------------------------------------- /src/ui/views/AstrologerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/AstrologerView.h -------------------------------------------------------------------------------- /src/ui/views/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/views/CartographerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CartographerView.cpp -------------------------------------------------------------------------------- /src/ui/views/CartographerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CartographerView.h -------------------------------------------------------------------------------- /src/ui/views/CitiesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CitiesView.cpp -------------------------------------------------------------------------------- /src/ui/views/CitiesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CitiesView.h -------------------------------------------------------------------------------- /src/ui/views/CityView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CityView.cpp -------------------------------------------------------------------------------- /src/ui/views/CityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CityView.h -------------------------------------------------------------------------------- /src/ui/views/CombatView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CombatView.cpp -------------------------------------------------------------------------------- /src/ui/views/CombatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/CombatView.h -------------------------------------------------------------------------------- /src/ui/views/ConsoleView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ConsoleView.cpp -------------------------------------------------------------------------------- /src/ui/views/ConsoleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ConsoleView.h -------------------------------------------------------------------------------- /src/ui/views/DiplomacyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/DiplomacyView.cpp -------------------------------------------------------------------------------- /src/ui/views/DiplomacyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/DiplomacyView.h -------------------------------------------------------------------------------- /src/ui/views/HistorianView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/HistorianView.cpp -------------------------------------------------------------------------------- /src/ui/views/HistorianView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/HistorianView.h -------------------------------------------------------------------------------- /src/ui/views/InfoMenuView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/InfoMenuView.cpp -------------------------------------------------------------------------------- /src/ui/views/InfoMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/InfoMenuView.h -------------------------------------------------------------------------------- /src/ui/views/IntroView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/IntroView.cpp -------------------------------------------------------------------------------- /src/ui/views/IntroView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/IntroView.h -------------------------------------------------------------------------------- /src/ui/views/ItemCraftChargesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ItemCraftChargesView.cpp -------------------------------------------------------------------------------- /src/ui/views/ItemCraftChargesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ItemCraftChargesView.h -------------------------------------------------------------------------------- /src/ui/views/ItemCraftView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ItemCraftView.cpp -------------------------------------------------------------------------------- /src/ui/views/ItemCraftView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ItemCraftView.h -------------------------------------------------------------------------------- /src/ui/views/LoadView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/LoadView.cpp -------------------------------------------------------------------------------- /src/ui/views/LoadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/LoadView.h -------------------------------------------------------------------------------- /src/ui/views/MagicView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MagicView.cpp -------------------------------------------------------------------------------- /src/ui/views/MagicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MagicView.h -------------------------------------------------------------------------------- /src/ui/views/MainView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MainView.cpp -------------------------------------------------------------------------------- /src/ui/views/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MainView.h -------------------------------------------------------------------------------- /src/ui/views/MerchantView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MerchantView.cpp -------------------------------------------------------------------------------- /src/ui/views/MerchantView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MerchantView.h -------------------------------------------------------------------------------- /src/ui/views/MessageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MessageView.cpp -------------------------------------------------------------------------------- /src/ui/views/MessageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MessageView.h -------------------------------------------------------------------------------- /src/ui/views/MirrorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MirrorView.cpp -------------------------------------------------------------------------------- /src/ui/views/MirrorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/MirrorView.h -------------------------------------------------------------------------------- /src/ui/views/NewGameView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/NewGameView.cpp -------------------------------------------------------------------------------- /src/ui/views/NewGameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/NewGameView.h -------------------------------------------------------------------------------- /src/ui/views/OptionsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/OptionsView.cpp -------------------------------------------------------------------------------- /src/ui/views/OptionsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/OptionsView.h -------------------------------------------------------------------------------- /src/ui/views/OutpostView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/OutpostView.cpp -------------------------------------------------------------------------------- /src/ui/views/OutpostView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/OutpostView.h -------------------------------------------------------------------------------- /src/ui/views/ProductionView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ProductionView.cpp -------------------------------------------------------------------------------- /src/ui/views/ProductionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ProductionView.h -------------------------------------------------------------------------------- /src/ui/views/ResearchView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ResearchView.cpp -------------------------------------------------------------------------------- /src/ui/views/ResearchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/ResearchView.h -------------------------------------------------------------------------------- /src/ui/views/SpellBookView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/SpellBookView.cpp -------------------------------------------------------------------------------- /src/ui/views/SpellBookView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/SpellBookView.h -------------------------------------------------------------------------------- /src/ui/views/StartView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/StartView.cpp -------------------------------------------------------------------------------- /src/ui/views/StartView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/StartView.h -------------------------------------------------------------------------------- /src/ui/views/UnitDetailView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/UnitDetailView.cpp -------------------------------------------------------------------------------- /src/ui/views/UnitDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/UnitDetailView.h -------------------------------------------------------------------------------- /src/ui/views/debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/debug/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/views/debug/DataView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/debug/DataView.cpp -------------------------------------------------------------------------------- /src/ui/views/debug/DataView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/debug/DataView.h -------------------------------------------------------------------------------- /src/ui/views/extra/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/extra/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/views/extra/MapEditorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/extra/MapEditorView.cpp -------------------------------------------------------------------------------- /src/ui/views/extra/MapEditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/src/ui/views/extra/MapEditorView.h -------------------------------------------------------------------------------- /targets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jakz/openmom/HEAD/targets/.gitignore --------------------------------------------------------------------------------