├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── Sources └── pongo ├── Pongo.hx ├── Window.hx ├── asset ├── AssetPack.hx ├── File.hx └── Manifest.hx ├── display ├── BlendMode.hx ├── CircleSprite.hx ├── ClearSprite.hx ├── FillSprite.hx ├── Font.hx ├── Graphics.hx ├── ImageSprite.hx ├── Pipeline.hx ├── Sprite.hx ├── TextSprite.hx └── Texture.hx ├── ecs ├── Apollo.hx ├── Component.hx ├── ComponentStore.hx ├── Entity.hx ├── EntityManager.hx ├── Filter.hx └── macro │ ├── ExprUtils.hx │ └── SystemTools.hx ├── input ├── KeyCode.hx ├── Keyboard.hx └── Mouse.hx ├── math ├── CMath.hx ├── Ease.hx └── Rectangle.hx ├── platform ├── Pongo.hx ├── Window.hx ├── asset │ ├── AssetPack.hx │ ├── File.hx │ └── ManifestBuilder.hx ├── display │ ├── Font.hx │ ├── Graphics.hx │ └── Texture.hx ├── input │ ├── Keyboard.hx │ └── Mouse.hx └── sound │ ├── Playback.hx │ └── Sound.hx ├── sound ├── Playback.hx └── Sound.hx └── util ├── Assert.hx ├── Disposable.hx ├── Pool.hx ├── Signal0.hx ├── Signal1.hx ├── Signal2.hx ├── Signal3.hx ├── Signal4.hx ├── SignalBase.hx ├── SignalConnection.hx └── Strings.hx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/README.md -------------------------------------------------------------------------------- /Sources/pongo/Pongo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/Pongo.hx -------------------------------------------------------------------------------- /Sources/pongo/Window.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/Window.hx -------------------------------------------------------------------------------- /Sources/pongo/asset/AssetPack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/asset/AssetPack.hx -------------------------------------------------------------------------------- /Sources/pongo/asset/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/asset/File.hx -------------------------------------------------------------------------------- /Sources/pongo/asset/Manifest.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/asset/Manifest.hx -------------------------------------------------------------------------------- /Sources/pongo/display/BlendMode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/BlendMode.hx -------------------------------------------------------------------------------- /Sources/pongo/display/CircleSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/CircleSprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/ClearSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/ClearSprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/FillSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/FillSprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/Font.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/Font.hx -------------------------------------------------------------------------------- /Sources/pongo/display/Graphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/Graphics.hx -------------------------------------------------------------------------------- /Sources/pongo/display/ImageSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/ImageSprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/Pipeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/Pipeline.hx -------------------------------------------------------------------------------- /Sources/pongo/display/Sprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/Sprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/TextSprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/TextSprite.hx -------------------------------------------------------------------------------- /Sources/pongo/display/Texture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/display/Texture.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/Apollo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/Apollo.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/Component.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/Component.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/ComponentStore.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/ComponentStore.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/Entity.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/Entity.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/EntityManager.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/EntityManager.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/Filter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/Filter.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/macro/ExprUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/macro/ExprUtils.hx -------------------------------------------------------------------------------- /Sources/pongo/ecs/macro/SystemTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/ecs/macro/SystemTools.hx -------------------------------------------------------------------------------- /Sources/pongo/input/KeyCode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/input/KeyCode.hx -------------------------------------------------------------------------------- /Sources/pongo/input/Keyboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/input/Keyboard.hx -------------------------------------------------------------------------------- /Sources/pongo/input/Mouse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/input/Mouse.hx -------------------------------------------------------------------------------- /Sources/pongo/math/CMath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/math/CMath.hx -------------------------------------------------------------------------------- /Sources/pongo/math/Ease.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/math/Ease.hx -------------------------------------------------------------------------------- /Sources/pongo/math/Rectangle.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/math/Rectangle.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/Pongo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/Pongo.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/Window.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/Window.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/asset/AssetPack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/asset/AssetPack.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/asset/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/asset/File.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/asset/ManifestBuilder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/asset/ManifestBuilder.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/display/Font.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/display/Font.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/display/Graphics.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/display/Graphics.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/display/Texture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/display/Texture.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/input/Keyboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/input/Keyboard.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/input/Mouse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/input/Mouse.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/sound/Playback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/sound/Playback.hx -------------------------------------------------------------------------------- /Sources/pongo/platform/sound/Sound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/platform/sound/Sound.hx -------------------------------------------------------------------------------- /Sources/pongo/sound/Playback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/sound/Playback.hx -------------------------------------------------------------------------------- /Sources/pongo/sound/Sound.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/sound/Sound.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Assert.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Assert.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Disposable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Disposable.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Pool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Pool.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Signal0.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Signal0.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Signal1.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Signal1.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Signal2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Signal2.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Signal3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Signal3.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Signal4.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Signal4.hx -------------------------------------------------------------------------------- /Sources/pongo/util/SignalBase.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/SignalBase.hx -------------------------------------------------------------------------------- /Sources/pongo/util/SignalConnection.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/SignalConnection.hx -------------------------------------------------------------------------------- /Sources/pongo/util/Strings.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/Pongo/HEAD/Sources/pongo/util/Strings.hx --------------------------------------------------------------------------------