├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── HxCU_Meta.json ├── LICENSE.md ├── README.md ├── docs ├── index.html ├── webImages │ ├── icon.png │ └── leafyEngineLogo.webp └── wiki │ ├── Getting-Started.md │ ├── README.md │ └── sections │ ├── FolderSections │ ├── Audio.md │ ├── Debugging.md │ ├── HTTP_Requests.md │ ├── JSON.md │ ├── Objects.md │ ├── Timers.md │ ├── Tweens.md │ └── WiiU_Gamepad.md │ └── README.md ├── haxelib.json ├── hxCompileUConfig.json ├── leafy ├── Import.hx ├── Leafy.hx ├── LfBase.hx ├── LfEngine.hx ├── audio │ ├── LfAudio.hx │ └── LfAudioEngine.hx ├── backend │ ├── LeafyDebug.hx │ ├── LfJson.hx │ ├── LfStateHandler.hx │ ├── LfTimer.hx │ ├── SubEngines.hx │ ├── internal │ │ ├── LfAudioManagerInternal.hx │ │ └── LfGamepadInternal.hx │ └── sdl │ │ ├── LfWindow.hx │ │ └── LfWindowRender.hx ├── filesystem │ ├── LfFile.hx │ └── LfSystemPaths.hx ├── gamepad │ └── LfGamepad.hx ├── groups │ └── LfGroup.hx ├── network │ └── LfCurlRequest.hx ├── objects │ ├── LfButton.hx │ ├── LfObject.hx │ ├── LfSprite.hx │ └── LfText.hx ├── states │ ├── LfState.hx │ └── LfSubState.hx ├── system │ └── console │ │ ├── SDCard.hx │ │ └── WiiUScreen.hx ├── tweens │ └── LfTween.hx └── utils │ ├── LfCollision.hx │ ├── LfStringUtils.hx │ └── LfUtils.hx └── readme └── leafyEngineLogo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /HxCU_Meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/HxCU_Meta.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/webImages/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/webImages/icon.png -------------------------------------------------------------------------------- /docs/webImages/leafyEngineLogo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/webImages/leafyEngineLogo.webp -------------------------------------------------------------------------------- /docs/wiki/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/Getting-Started.md -------------------------------------------------------------------------------- /docs/wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/README.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/Audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/Audio.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/Debugging.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/HTTP_Requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/HTTP_Requests.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/JSON.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/Objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/Objects.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/Timers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/Timers.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/Tweens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/Tweens.md -------------------------------------------------------------------------------- /docs/wiki/sections/FolderSections/WiiU_Gamepad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/FolderSections/WiiU_Gamepad.md -------------------------------------------------------------------------------- /docs/wiki/sections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/docs/wiki/sections/README.md -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/haxelib.json -------------------------------------------------------------------------------- /hxCompileUConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/hxCompileUConfig.json -------------------------------------------------------------------------------- /leafy/Import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/Import.hx -------------------------------------------------------------------------------- /leafy/Leafy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/Leafy.hx -------------------------------------------------------------------------------- /leafy/LfBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/LfBase.hx -------------------------------------------------------------------------------- /leafy/LfEngine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/LfEngine.hx -------------------------------------------------------------------------------- /leafy/audio/LfAudio.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/audio/LfAudio.hx -------------------------------------------------------------------------------- /leafy/audio/LfAudioEngine.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/audio/LfAudioEngine.hx -------------------------------------------------------------------------------- /leafy/backend/LeafyDebug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/LeafyDebug.hx -------------------------------------------------------------------------------- /leafy/backend/LfJson.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/LfJson.hx -------------------------------------------------------------------------------- /leafy/backend/LfStateHandler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/LfStateHandler.hx -------------------------------------------------------------------------------- /leafy/backend/LfTimer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/LfTimer.hx -------------------------------------------------------------------------------- /leafy/backend/SubEngines.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/SubEngines.hx -------------------------------------------------------------------------------- /leafy/backend/internal/LfAudioManagerInternal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/internal/LfAudioManagerInternal.hx -------------------------------------------------------------------------------- /leafy/backend/internal/LfGamepadInternal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/internal/LfGamepadInternal.hx -------------------------------------------------------------------------------- /leafy/backend/sdl/LfWindow.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/sdl/LfWindow.hx -------------------------------------------------------------------------------- /leafy/backend/sdl/LfWindowRender.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/backend/sdl/LfWindowRender.hx -------------------------------------------------------------------------------- /leafy/filesystem/LfFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/filesystem/LfFile.hx -------------------------------------------------------------------------------- /leafy/filesystem/LfSystemPaths.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/filesystem/LfSystemPaths.hx -------------------------------------------------------------------------------- /leafy/gamepad/LfGamepad.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/gamepad/LfGamepad.hx -------------------------------------------------------------------------------- /leafy/groups/LfGroup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/groups/LfGroup.hx -------------------------------------------------------------------------------- /leafy/network/LfCurlRequest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/network/LfCurlRequest.hx -------------------------------------------------------------------------------- /leafy/objects/LfButton.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/objects/LfButton.hx -------------------------------------------------------------------------------- /leafy/objects/LfObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/objects/LfObject.hx -------------------------------------------------------------------------------- /leafy/objects/LfSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/objects/LfSprite.hx -------------------------------------------------------------------------------- /leafy/objects/LfText.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/objects/LfText.hx -------------------------------------------------------------------------------- /leafy/states/LfState.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/states/LfState.hx -------------------------------------------------------------------------------- /leafy/states/LfSubState.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/states/LfSubState.hx -------------------------------------------------------------------------------- /leafy/system/console/SDCard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/system/console/SDCard.hx -------------------------------------------------------------------------------- /leafy/system/console/WiiUScreen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/system/console/WiiUScreen.hx -------------------------------------------------------------------------------- /leafy/tweens/LfTween.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/tweens/LfTween.hx -------------------------------------------------------------------------------- /leafy/utils/LfCollision.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/utils/LfCollision.hx -------------------------------------------------------------------------------- /leafy/utils/LfStringUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/utils/LfStringUtils.hx -------------------------------------------------------------------------------- /leafy/utils/LfUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/leafy/utils/LfUtils.hx -------------------------------------------------------------------------------- /readme/leafyEngineLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slushi-Github/leafyEngine/HEAD/readme/leafyEngineLogo.png --------------------------------------------------------------------------------