├── .gitignore ├── Camera.cpp ├── Helix2D.sln ├── Helix2D.vcxproj ├── Helix2D.vcxproj.filters ├── Helix2D.vcxproj.user ├── Image.cpp ├── Inbuilt.cpp ├── Module.cpp ├── Painter.cpp ├── README.md ├── Renderer.cpp ├── Shape.cpp ├── Sprite.cpp ├── Text.cpp ├── Tool.cpp ├── Window.cpp ├── h2dBase.h ├── h2dCamera.h ├── h2dImage.h ├── h2dInbuilt.h ├── h2dMacros.h ├── h2dModule.h ├── h2dRender.h ├── h2dShape.h ├── h2dText.h ├── h2dTool.h └── helix2d.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Camera.cpp -------------------------------------------------------------------------------- /Helix2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Helix2D.sln -------------------------------------------------------------------------------- /Helix2D.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Helix2D.vcxproj -------------------------------------------------------------------------------- /Helix2D.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Helix2D.vcxproj.filters -------------------------------------------------------------------------------- /Helix2D.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Helix2D.vcxproj.user -------------------------------------------------------------------------------- /Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Image.cpp -------------------------------------------------------------------------------- /Inbuilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Inbuilt.cpp -------------------------------------------------------------------------------- /Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Module.cpp -------------------------------------------------------------------------------- /Painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Painter.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/README.md -------------------------------------------------------------------------------- /Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Renderer.cpp -------------------------------------------------------------------------------- /Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Shape.cpp -------------------------------------------------------------------------------- /Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Sprite.cpp -------------------------------------------------------------------------------- /Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Text.cpp -------------------------------------------------------------------------------- /Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Tool.cpp -------------------------------------------------------------------------------- /Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/Window.cpp -------------------------------------------------------------------------------- /h2dBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dBase.h -------------------------------------------------------------------------------- /h2dCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dCamera.h -------------------------------------------------------------------------------- /h2dImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dImage.h -------------------------------------------------------------------------------- /h2dInbuilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dInbuilt.h -------------------------------------------------------------------------------- /h2dMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dMacros.h -------------------------------------------------------------------------------- /h2dModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dModule.h -------------------------------------------------------------------------------- /h2dRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dRender.h -------------------------------------------------------------------------------- /h2dShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dShape.h -------------------------------------------------------------------------------- /h2dText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dText.h -------------------------------------------------------------------------------- /h2dTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/h2dTool.h -------------------------------------------------------------------------------- /helix2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelixEngine/Helix2D/HEAD/helix2d.h --------------------------------------------------------------------------------