Advertisement
vovan333

pseudo-shitcode

Aug 5th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "windows.h"
  2.  
  3. int main()
  4. {
  5.     W::Window appWindow("Hello World", W::Size(600, 800), W::WindowStyle::Default);
  6.     appWindow.Show();
  7.     appWindow.Draw(W::Text("Hello World"), 0, 0);
  8.     appWindow.on("close", &(void)(W::Window* window)
  9.     {
  10.         window->Terminate();
  11.     });
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement