Crafter.Graphics/Crafter.Graphics-Window.cpp

12 lines
244 B
C++
Raw Normal View History

2025-04-16 00:43:33 +02:00
module;
2025-04-19 15:46:26 +02:00
#include <cstdint>
2025-04-16 00:43:33 +02:00
#include <string>
module Crafter.Graphics;
import Crafter.Event;
using namespace Crafter;
2025-04-19 15:46:26 +02:00
Window::Window(std::string name, std::uint32_t width, std::uint32_t height) : name(name), width(width), height(height) {
2025-04-16 00:43:33 +02:00
}