Crafter.Graphics/examples/HelloWindow/main.cpp

8 lines
156 B
C++
Raw Permalink 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-23 04:04:53 +01:00
WindowWayland window(1280, 720, "Hello Window!");
2025-06-13 23:59:36 +02:00
window.StartSync();
}