16 lines
No EOL
255 B
C++
16 lines
No EOL
255 B
C++
import VUI;
|
|
|
|
#include <iostream>
|
|
#include <ostream>
|
|
|
|
struct Me final : VUI::RefCounted {
|
|
|
|
};
|
|
|
|
int main() {
|
|
VUI::WindowManager::Create(1280, 720, "VUI");
|
|
while (VUI::WindowManager::HasOpenWindows()) {
|
|
VUI::WindowManager::Update();
|
|
}
|
|
return 0;
|
|
} |