Crafter.Graphics/examples/HelloWindow/main.cpp

8 lines
173 B
C++
Raw Normal View History

2025-06-13 23:59:36 +02:00
import Crafter.Graphics;
2025-11-16 18:52:52 +01:00
import std;
2025-04-16 00:43:33 +02:00
using namespace Crafter;
2025-06-13 23:59:36 +02:00
int main() {
2025-11-22 20:58:42 +01:00
Window<true, true, false, false> window(1280, 720, "HelloWindow");
2025-06-13 23:59:36 +02:00
window.StartSync();
}