#include <kiwano/kiwano.h>
StagePtr stage = new Stage;
TextActorPtr text = new TextActor("Hello World");
text->SetFillColor(Color::White);
Director::GetInstance().EnterStage(stage);
int WINAPI wWinMain(HINSTANCE, HINSTANCE, PWSTR, int)
s.window.title = "Hello World"; // 窗口标题
s.window.width = 640; // 窗口宽度
s.window.height = 480; // 窗口高度
Application::GetInstance().Run(s, Setup);