mirror of
https://github.com/AxioDL/boo.git
synced 2025-07-17 02:25:51 +00:00
16 lines
177 B
C++
16 lines
177 B
C++
|
|
#include <stdio.h>
|
|
#include <boo.hpp>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
IContext* ctx = new CContext;
|
|
|
|
if (ctx->create())
|
|
{
|
|
}
|
|
|
|
delete ctx;
|
|
return 0;
|
|
}
|