blob: 3da1ec89b8c3b861ff8c17771ced8b1c610b2c64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
}
|