boo/test/main.cpp

16 lines
193 B
C++
Raw Normal View History

2015-04-18 21:46:51 +00:00
#include <stdio.h>
#include <boo.hpp>
int main(int argc, char** argv)
{
2015-04-19 00:09:24 +00:00
IGraphicsContext* ctx = new CGraphicsContext;
2015-04-18 23:12:22 +00:00
if (ctx->create())
{
}
delete ctx;
2015-04-18 21:46:51 +00:00
return 0;
}