diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-09-12 00:42:36 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-09-12 00:42:36 +0800 |
commit | 27f153af927c056af5cec70db5f011752e29b156 (patch) | |
tree | cdbe0a61f037cd1641f23f681d221a3206454411 /demos/Graphics/DrawCircle/PlatformMain.cpp | |
parent | 7c135df9b8057e1de3ea6a73fb785d5622b519d4 (diff) | |
download | cru-27f153af927c056af5cec70db5f011752e29b156.tar.gz cru-27f153af927c056af5cec70db5f011752e29b156.tar.bz2 cru-27f153af927c056af5cec70db5f011752e29b156.zip |
Organize bootstrap and graphics demos.
Diffstat (limited to 'demos/Graphics/DrawCircle/PlatformMain.cpp')
-rw-r--r-- | demos/Graphics/DrawCircle/PlatformMain.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/demos/Graphics/DrawCircle/PlatformMain.cpp b/demos/Graphics/DrawCircle/PlatformMain.cpp deleted file mode 100644 index 3da1ec89..00000000 --- a/demos/Graphics/DrawCircle/PlatformMain.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include "cru/platform/bootstrap/Bootstrap.h" - -#include "DrawCircle.h" - -int main() { - std::unique_ptr<cru::platform::graphics::IGraphicsFactory> graphics_factory( - cru::platform::bootstrap::CreateGraphicsFactory()); - - cru::demos::graphics::DrawCircle(graphics_factory.get()); - - return 0; -} |