Crafter.Graphics/examples/HelloWindow/main.cpp

12 lines
264 B
C++
Raw Normal View History

2026-07-22 18:09:06 +02:00
//SPDX-License-Identifier: MIT
//SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
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() {
2026-03-09 20:10:19 +01:00
Device::Initialize();
Window window(1280, 720, "Hello Window!");
2025-06-13 23:59:36 +02:00
window.StartSync();
}