├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── CMakeLists.txt ├── ContributionGuidline.md ├── LICENSE ├── README.md ├── assets ├── Audio │ ├── background_music.mp3 │ ├── jump_sound.mp3 │ └── mario-music.mp3 ├── Fonts │ └── roboto │ │ ├── NOTICE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldCondensed.ttf │ │ ├── Roboto-BoldCondensedItalic.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Condensed.ttf │ │ ├── Roboto-CondensedItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-ThinItalic.ttf │ │ └── Roboto_Specimen_Book.pdf ├── Scenes │ ├── new_scene.json │ └── scene.json ├── Scripts │ ├── cat.lua │ ├── event_statemachine_demo.lua │ ├── particle_demo.lua │ ├── player.lua │ ├── player_with_sounds.lua │ └── ui_demo.lua ├── Textures │ ├── background.jpg │ ├── mario obstacle.png │ ├── mario.png │ ├── mariobg.png │ ├── marioblock.png │ ├── marioground.jpg │ ├── player.png │ └── running.png └── animations │ ├── mariorunning.json │ └── running.json ├── config.json.example ├── docs ├── GeminiAPIKeySetup.md └── SoundEffectsSystem.md ├── readmeimgs ├── image.png ├── image2.png ├── image3.png └── logo.png ├── src ├── AssetManager.cpp ├── AssetManager.h ├── AudioManager.cpp ├── AudioManager.h ├── Game.cpp ├── Game.h ├── InputManager.cpp ├── InputManager.h ├── Physics.cpp ├── Physics.h ├── Scene.h ├── SceneManager.cpp ├── SceneManager.h ├── ai │ ├── AIPromptProcessor.cpp │ └── AIPromptProcessor.h ├── animation │ └── Animation.h ├── ecs │ ├── Component.h │ ├── ComponentManager.h │ ├── Entity.h │ ├── EntityManager.h │ ├── System.h │ ├── SystemManager.h │ ├── Types.h │ ├── components │ │ ├── AnimationComponent.h │ │ ├── AudioComponent.h │ │ ├── CameraComponent.h │ │ ├── ColliderComponent.h │ │ ├── EventComponent.h │ │ ├── NameComponent.h │ │ ├── ParticleComponent.cpp │ │ ├── ParticleComponent.h │ │ ├── RigidbodyComponent.h │ │ ├── ScriptComponent.h │ │ ├── SpriteComponent.h │ │ ├── StateMachineComponent.h │ │ ├── TagComponent.h │ │ ├── TransformComponent.h │ │ ├── UIComponent.h │ │ └── VelocityComponent.h │ └── systems │ │ ├── AnimationSystem.cpp │ │ ├── AnimationSystem.h │ │ ├── AudioSystem.cpp │ │ ├── AudioSystem.h │ │ ├── CameraSystem.cpp │ │ ├── CameraSystem.h │ │ ├── CollisionSystem.h │ │ ├── EventSystem.cpp │ │ ├── EventSystem.h │ │ ├── MovementSystem.h │ │ ├── ParticleSystem.cpp │ │ ├── ParticleSystem.h │ │ ├── PhysicsSystem.cpp │ │ ├── PhysicsSystem.h │ │ ├── RenderSystem.h │ │ ├── ScriptSystem.cpp │ │ ├── ScriptSystem.h │ │ ├── StateMachineSystem.cpp │ │ ├── StateMachineSystem.h │ │ ├── UISystem.cpp │ │ └── UISystem.h ├── main.cpp ├── scenes │ ├── DevModeInputHandler.cpp │ ├── DevModeInputHandler.h │ ├── DevModeScene.cpp │ ├── DevModeScene.h │ ├── DevModeSceneSerializer.cpp │ ├── DevModeSceneSerializer.h │ ├── GameScene.cpp │ ├── GameScene.h │ ├── InspectorPanel.cpp │ ├── InspectorPanel.h │ ├── MenuScene.cpp │ └── MenuScene.h ├── spatial │ ├── Quadtree.cpp │ └── Quadtree.h └── utils │ ├── Console.cpp │ ├── Console.h │ ├── EditorHelpers.h │ ├── EditorUI.cpp │ ├── EditorUI.h │ ├── EditorUtils.cpp │ ├── EditorUtils.h │ ├── FileUtils.cpp │ └── FileUtils.h ├── tests └── test_physics.cpp ├── utils ├── utility.cpp └── utility.h └── vendor ├── imgui ├── .editorconfig ├── .gitattributes ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── config.yml │ │ └── issue_template.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── build.yml │ │ ├── manual.yml │ │ ├── scheduled.yml │ │ └── static-analysis.yml ├── .gitignore ├── LICENSE.txt ├── backends │ ├── imgui_impl_allegro5.cpp │ ├── imgui_impl_allegro5.h │ ├── imgui_impl_android.cpp │ ├── imgui_impl_android.h │ ├── imgui_impl_dx10.cpp │ ├── imgui_impl_dx10.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx12.cpp │ ├── imgui_impl_dx12.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_glut.cpp │ ├── imgui_impl_glut.h │ ├── imgui_impl_metal.h │ ├── imgui_impl_metal.mm │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_impl_osx.h │ ├── imgui_impl_osx.mm │ ├── imgui_impl_sdl2.cpp │ ├── imgui_impl_sdl2.h │ ├── imgui_impl_sdl3.cpp │ ├── imgui_impl_sdl3.h │ ├── imgui_impl_sdlgpu3.cpp │ ├── imgui_impl_sdlgpu3.h │ ├── imgui_impl_sdlgpu3_shaders.h │ ├── imgui_impl_sdlrenderer2.cpp │ ├── imgui_impl_sdlrenderer2.h │ ├── imgui_impl_sdlrenderer3.cpp │ ├── imgui_impl_sdlrenderer3.h │ ├── imgui_impl_vulkan.cpp │ ├── imgui_impl_vulkan.h │ ├── imgui_impl_wgpu.cpp │ ├── imgui_impl_wgpu.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── sdlgpu3 │ │ ├── build_instructions.txt │ │ ├── shader.frag │ │ └── shader.vert │ └── vulkan │ │ ├── build_instructions.txt │ │ ├── generate_spv.sh │ │ ├── glsl_shader.frag │ │ └── glsl_shader.vert ├── docs │ ├── BACKENDS.md │ ├── CHANGELOG.txt │ ├── CONTRIBUTING.md │ ├── EXAMPLES.md │ ├── FAQ.md │ ├── FONTS.md │ ├── README.md │ └── TODO.txt ├── examples │ ├── README.txt │ ├── example_allegro5 │ │ ├── README.md │ │ ├── example_allegro5.vcxproj │ │ ├── example_allegro5.vcxproj.filters │ │ ├── imconfig_allegro5.h │ │ └── main.cpp │ ├── example_android_opengl3 │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ └── MainActivity.kt │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── main.cpp │ ├── example_apple_metal │ │ ├── README.md │ │ ├── example_apple_metal.xcodeproj │ │ │ └── project.pbxproj │ │ ├── iOS │ │ │ ├── Info-iOS.plist │ │ │ └── LaunchScreen.storyboard │ │ ├── macOS │ │ │ ├── Info-macOS.plist │ │ │ └── MainMenu.storyboard │ │ └── main.mm │ ├── example_apple_opengl2 │ │ ├── example_apple_opengl2.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.mm │ ├── example_glfw_metal │ │ ├── Makefile │ │ └── main.mm │ ├── example_glfw_opengl2 │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl2.vcxproj │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl3.vcxproj │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_vulkan │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_glfw_vulkan.vcxproj │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_wgpu │ │ ├── CMakeLists.txt │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── main.cpp │ │ └── web │ │ │ └── index.html │ ├── example_glut_opengl2 │ │ ├── Makefile │ │ ├── example_glut_opengl2.vcxproj │ │ ├── example_glut_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_null │ │ ├── Makefile │ │ ├── build_win32.bat │ │ └── main.cpp │ ├── example_sdl2_directx11 │ │ ├── build_win32.bat │ │ ├── example_sdl2_directx11.vcxproj │ │ ├── example_sdl2_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_metal │ │ ├── Makefile │ │ └── main.mm │ ├── example_sdl2_opengl2 │ │ ├── Makefile │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl2.vcxproj │ │ ├── example_sdl2_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl3.vcxproj │ │ ├── example_sdl2_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_sdlrenderer2 │ │ ├── Makefile │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_sdlrenderer2.vcxproj │ │ ├── example_sdl2_sdlrenderer2.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_vulkan │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_sdl2_vulkan.vcxproj │ │ ├── example_sdl2_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_opengl3 │ │ ├── Makefile │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_sdl3_opengl3.vcxproj │ │ ├── example_sdl3_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_sdlgpu3 │ │ ├── Makefile │ │ ├── build_win64.bat │ │ ├── example_sdl3_sdlgpu3.vcxproj │ │ ├── example_sdl3_sdlgpu3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_sdlrenderer3 │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── example_sdl3_sdlrenderer3.vcxproj │ │ ├── example_sdl3_sdlrenderer3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_vulkan │ │ ├── Makefile │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_sdl3_vulkan.vcxproj │ │ ├── example_sdl3_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx10 │ │ ├── build_win32.bat │ │ ├── example_win32_directx10.vcxproj │ │ ├── example_win32_directx10.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx11 │ │ ├── build_win32.bat │ │ ├── example_win32_directx11.vcxproj │ │ ├── example_win32_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx12 │ │ ├── build_win32.bat │ │ ├── example_win32_directx12.vcxproj │ │ ├── example_win32_directx12.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx9 │ │ ├── build_win32.bat │ │ ├── example_win32_directx9.vcxproj │ │ ├── example_win32_directx9.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_opengl3 │ │ ├── build_mingw.bat │ │ ├── build_win32.bat │ │ ├── example_win32_opengl3.vcxproj │ │ ├── example_win32_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_vulkan │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_win32_vulkan.vcxproj │ │ ├── example_win32_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── imgui_examples.sln │ └── libs │ │ ├── emscripten │ │ ├── emscripten_mainloop_stub.h │ │ └── shell_minimal.html │ │ ├── glfw │ │ ├── COPYING.txt │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── lib-vc2010-32 │ │ │ └── glfw3.lib │ │ └── lib-vc2010-64 │ │ │ └── glfw3.lib │ │ └── usynergy │ │ ├── README.txt │ │ ├── uSynergy.c │ │ └── uSynergy.h ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h └── misc │ ├── README.txt │ ├── cpp │ ├── README.txt │ ├── imgui_stdlib.cpp │ └── imgui_stdlib.h │ ├── debuggers │ ├── README.txt │ ├── imgui.gdb │ ├── imgui.natstepfilter │ └── imgui.natvis │ ├── fonts │ ├── Cousine-Regular.ttf │ ├── DroidSans.ttf │ ├── Karla-Regular.ttf │ ├── ProggyClean.ttf │ ├── ProggyTiny.ttf │ ├── Roboto-Medium.ttf │ └── binary_to_compressed_c.cpp │ ├── freetype │ ├── README.md │ ├── imgui_freetype.cpp │ └── imgui_freetype.h │ └── single_file │ └── imgui_single_file.h └── nlohmann └── json.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | config.json -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ContributionGuidline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/ContributionGuidline.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/README.md -------------------------------------------------------------------------------- /assets/Audio/background_music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Audio/background_music.mp3 -------------------------------------------------------------------------------- /assets/Audio/jump_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Audio/jump_sound.mp3 -------------------------------------------------------------------------------- /assets/Audio/mario-music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Audio/mario-music.mp3 -------------------------------------------------------------------------------- /assets/Fonts/roboto/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/NOTICE.txt -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-BoldCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-BoldCondensed.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-BoldCondensedItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-BoldCondensedItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Condensed.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-CondensedItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-CondensedItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/Fonts/roboto/Roboto_Specimen_Book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Fonts/roboto/Roboto_Specimen_Book.pdf -------------------------------------------------------------------------------- /assets/Scenes/new_scene.json: -------------------------------------------------------------------------------- 1 | { 2 | "entities": [] 3 | } -------------------------------------------------------------------------------- /assets/Scenes/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scenes/scene.json -------------------------------------------------------------------------------- /assets/Scripts/cat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/cat.lua -------------------------------------------------------------------------------- /assets/Scripts/event_statemachine_demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/event_statemachine_demo.lua -------------------------------------------------------------------------------- /assets/Scripts/particle_demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/particle_demo.lua -------------------------------------------------------------------------------- /assets/Scripts/player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/player.lua -------------------------------------------------------------------------------- /assets/Scripts/player_with_sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/player_with_sounds.lua -------------------------------------------------------------------------------- /assets/Scripts/ui_demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Scripts/ui_demo.lua -------------------------------------------------------------------------------- /assets/Textures/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/background.jpg -------------------------------------------------------------------------------- /assets/Textures/mario obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/mario obstacle.png -------------------------------------------------------------------------------- /assets/Textures/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/mario.png -------------------------------------------------------------------------------- /assets/Textures/mariobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/mariobg.png -------------------------------------------------------------------------------- /assets/Textures/marioblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/marioblock.png -------------------------------------------------------------------------------- /assets/Textures/marioground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/marioground.jpg -------------------------------------------------------------------------------- /assets/Textures/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/player.png -------------------------------------------------------------------------------- /assets/Textures/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/Textures/running.png -------------------------------------------------------------------------------- /assets/animations/mariorunning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/animations/mariorunning.json -------------------------------------------------------------------------------- /assets/animations/running.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/assets/animations/running.json -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/config.json.example -------------------------------------------------------------------------------- /docs/GeminiAPIKeySetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/docs/GeminiAPIKeySetup.md -------------------------------------------------------------------------------- /docs/SoundEffectsSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/docs/SoundEffectsSystem.md -------------------------------------------------------------------------------- /readmeimgs/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/readmeimgs/image.png -------------------------------------------------------------------------------- /readmeimgs/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/readmeimgs/image2.png -------------------------------------------------------------------------------- /readmeimgs/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/readmeimgs/image3.png -------------------------------------------------------------------------------- /readmeimgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/readmeimgs/logo.png -------------------------------------------------------------------------------- /src/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/AssetManager.cpp -------------------------------------------------------------------------------- /src/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/AssetManager.h -------------------------------------------------------------------------------- /src/AudioManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AudioManager.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/Game.h -------------------------------------------------------------------------------- /src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/InputManager.cpp -------------------------------------------------------------------------------- /src/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/InputManager.h -------------------------------------------------------------------------------- /src/Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/Physics.cpp -------------------------------------------------------------------------------- /src/Physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/Physics.h -------------------------------------------------------------------------------- /src/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/Scene.h -------------------------------------------------------------------------------- /src/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/SceneManager.cpp -------------------------------------------------------------------------------- /src/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/SceneManager.h -------------------------------------------------------------------------------- /src/ai/AIPromptProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ai/AIPromptProcessor.cpp -------------------------------------------------------------------------------- /src/ai/AIPromptProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ai/AIPromptProcessor.h -------------------------------------------------------------------------------- /src/animation/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/animation/Animation.h -------------------------------------------------------------------------------- /src/ecs/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/Component.h -------------------------------------------------------------------------------- /src/ecs/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/ComponentManager.h -------------------------------------------------------------------------------- /src/ecs/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/Entity.h -------------------------------------------------------------------------------- /src/ecs/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/EntityManager.h -------------------------------------------------------------------------------- /src/ecs/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/System.h -------------------------------------------------------------------------------- /src/ecs/SystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/SystemManager.h -------------------------------------------------------------------------------- /src/ecs/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/Types.h -------------------------------------------------------------------------------- /src/ecs/components/AnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/AnimationComponent.h -------------------------------------------------------------------------------- /src/ecs/components/AudioComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/AudioComponent.h -------------------------------------------------------------------------------- /src/ecs/components/CameraComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/CameraComponent.h -------------------------------------------------------------------------------- /src/ecs/components/ColliderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/ColliderComponent.h -------------------------------------------------------------------------------- /src/ecs/components/EventComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/EventComponent.h -------------------------------------------------------------------------------- /src/ecs/components/NameComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/NameComponent.h -------------------------------------------------------------------------------- /src/ecs/components/ParticleComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/ParticleComponent.cpp -------------------------------------------------------------------------------- /src/ecs/components/ParticleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/ParticleComponent.h -------------------------------------------------------------------------------- /src/ecs/components/RigidbodyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/RigidbodyComponent.h -------------------------------------------------------------------------------- /src/ecs/components/ScriptComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/ScriptComponent.h -------------------------------------------------------------------------------- /src/ecs/components/SpriteComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/SpriteComponent.h -------------------------------------------------------------------------------- /src/ecs/components/StateMachineComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/StateMachineComponent.h -------------------------------------------------------------------------------- /src/ecs/components/TagComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/TagComponent.h -------------------------------------------------------------------------------- /src/ecs/components/TransformComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/TransformComponent.h -------------------------------------------------------------------------------- /src/ecs/components/UIComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/UIComponent.h -------------------------------------------------------------------------------- /src/ecs/components/VelocityComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/components/VelocityComponent.h -------------------------------------------------------------------------------- /src/ecs/systems/AnimationSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/AnimationSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/AnimationSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/AnimationSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/AudioSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/AudioSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/AudioSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/AudioSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/CameraSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/CameraSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/CameraSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/CameraSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/CollisionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/CollisionSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/EventSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/EventSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/EventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/EventSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/MovementSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/MovementSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/ParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/ParticleSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/ParticleSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/PhysicsSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/PhysicsSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/PhysicsSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/PhysicsSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/RenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/RenderSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/ScriptSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/ScriptSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/ScriptSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/ScriptSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/StateMachineSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/StateMachineSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/StateMachineSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/StateMachineSystem.h -------------------------------------------------------------------------------- /src/ecs/systems/UISystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/UISystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/UISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/ecs/systems/UISystem.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/scenes/DevModeInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeInputHandler.cpp -------------------------------------------------------------------------------- /src/scenes/DevModeInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeInputHandler.h -------------------------------------------------------------------------------- /src/scenes/DevModeScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeScene.cpp -------------------------------------------------------------------------------- /src/scenes/DevModeScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeScene.h -------------------------------------------------------------------------------- /src/scenes/DevModeSceneSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeSceneSerializer.cpp -------------------------------------------------------------------------------- /src/scenes/DevModeSceneSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/DevModeSceneSerializer.h -------------------------------------------------------------------------------- /src/scenes/GameScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/GameScene.cpp -------------------------------------------------------------------------------- /src/scenes/GameScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/GameScene.h -------------------------------------------------------------------------------- /src/scenes/InspectorPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/InspectorPanel.cpp -------------------------------------------------------------------------------- /src/scenes/InspectorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/InspectorPanel.h -------------------------------------------------------------------------------- /src/scenes/MenuScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/MenuScene.cpp -------------------------------------------------------------------------------- /src/scenes/MenuScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/scenes/MenuScene.h -------------------------------------------------------------------------------- /src/spatial/Quadtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/spatial/Quadtree.cpp -------------------------------------------------------------------------------- /src/spatial/Quadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/spatial/Quadtree.h -------------------------------------------------------------------------------- /src/utils/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/Console.cpp -------------------------------------------------------------------------------- /src/utils/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/Console.h -------------------------------------------------------------------------------- /src/utils/EditorHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/EditorHelpers.h -------------------------------------------------------------------------------- /src/utils/EditorUI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/EditorUI.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/EditorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/EditorUtils.cpp -------------------------------------------------------------------------------- /src/utils/EditorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/EditorUtils.h -------------------------------------------------------------------------------- /src/utils/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/FileUtils.cpp -------------------------------------------------------------------------------- /src/utils/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/src/utils/FileUtils.h -------------------------------------------------------------------------------- /tests/test_physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/tests/test_physics.cpp -------------------------------------------------------------------------------- /utils/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/utils/utility.cpp -------------------------------------------------------------------------------- /utils/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/utils/utility.h -------------------------------------------------------------------------------- /vendor/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.editorconfig -------------------------------------------------------------------------------- /vendor/imgui/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.gitattributes -------------------------------------------------------------------------------- /vendor/imgui/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Funding'] 2 | -------------------------------------------------------------------------------- /vendor/imgui/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /vendor/imgui/.github/ISSUE_TEMPLATE/issue_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/ISSUE_TEMPLATE/issue_template.yml -------------------------------------------------------------------------------- /vendor/imgui/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/pull_request_template.md -------------------------------------------------------------------------------- /vendor/imgui/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/workflows/build.yml -------------------------------------------------------------------------------- /vendor/imgui/.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/workflows/manual.yml -------------------------------------------------------------------------------- /vendor/imgui/.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /vendor/imgui/.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /vendor/imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/.gitignore -------------------------------------------------------------------------------- /vendor/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/LICENSE.txt -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdl3.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdl3.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlgpu3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlgpu3.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlgpu3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlgpu3.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlgpu3_shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlgpu3_shaders.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlrenderer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlrenderer2.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlrenderer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlrenderer2.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlrenderer3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlrenderer3.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_sdlrenderer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_sdlrenderer3.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /vendor/imgui/backends/sdlgpu3/build_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/sdlgpu3/build_instructions.txt -------------------------------------------------------------------------------- /vendor/imgui/backends/sdlgpu3/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/sdlgpu3/shader.frag -------------------------------------------------------------------------------- /vendor/imgui/backends/sdlgpu3/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/sdlgpu3/shader.vert -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/build_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/vulkan/build_instructions.txt -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /vendor/imgui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/BACKENDS.md -------------------------------------------------------------------------------- /vendor/imgui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /vendor/imgui/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/imgui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /vendor/imgui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/FAQ.md -------------------------------------------------------------------------------- /vendor/imgui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/FONTS.md -------------------------------------------------------------------------------- /vendor/imgui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/README.md -------------------------------------------------------------------------------- /vendor/imgui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/docs/TODO.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/README.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/example_allegro5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_allegro5/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_allegro5/example_allegro5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_allegro5/example_allegro5.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_allegro5/imconfig_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_allegro5/imconfig_allegro5.h -------------------------------------------------------------------------------- /vendor/imgui/examples/example_allegro5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_allegro5/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/android/.gitignore -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/android/app/build.gradle -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/android/build.gradle -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /vendor/imgui/examples/example_android_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_android_opengl3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/iOS/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/iOS/Info-iOS.plist -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/macOS/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/macOS/Info-macOS.plist -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_metal/main.mm -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_apple_opengl2/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_apple_opengl2/main.mm -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_metal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_metal/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_metal/main.mm -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl2/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl2/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl2/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_opengl3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_vulkan/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_wgpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_wgpu/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_wgpu/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_wgpu/Makefile.emscripten -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_wgpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_wgpu/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_wgpu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_wgpu/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glfw_wgpu/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glfw_wgpu/web/index.html -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glut_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glut_opengl2/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_glut_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_glut_opengl2/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_null/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_null/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_null/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_null/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_null/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_directx11/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_directx11/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_metal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_metal/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_metal/main.mm -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl2/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_opengl3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_sdlrenderer2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_sdlrenderer2/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl2_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl2_vulkan/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/README.md -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_opengl3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlgpu3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlgpu3/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlgpu3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlgpu3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlrenderer3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlrenderer3/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_sdlrenderer3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_sdlrenderer3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/Makefile -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_sdl3_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_sdl3_vulkan/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx10/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx10/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx10/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx11/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx11/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx12/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx12/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx12/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx9/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx9/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_directx9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_directx9/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_opengl3/build_mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_opengl3/build_mingw.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_opengl3/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_opengl3/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_vulkan/build_win32.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_vulkan/build_win64.bat -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /vendor/imgui/examples/example_win32_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/example_win32_vulkan/main.cpp -------------------------------------------------------------------------------- /vendor/imgui/examples/imgui_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/imgui_examples.sln -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/emscripten/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/emscripten/shell_minimal.html -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/glfw/COPYING.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/usynergy/README.txt -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/usynergy/uSynergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/usynergy/uSynergy.c -------------------------------------------------------------------------------- /vendor/imgui/examples/libs/usynergy/uSynergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/examples/libs/usynergy/uSynergy.h -------------------------------------------------------------------------------- /vendor/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imconfig.h -------------------------------------------------------------------------------- /vendor/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui_internal.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /vendor/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /vendor/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /vendor/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /vendor/imgui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/cpp/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/freetype/README.md -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /vendor/imgui/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/imgui/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /vendor/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basketoengine/Basketo/HEAD/vendor/nlohmann/json.hpp --------------------------------------------------------------------------------