module;
#include <cstdint>
#include <string>
module Crafter.Graphics;
import Crafter.Event;
using namespace Crafter;
Window::Window(std::string name, std::uint32_t width, std::uint32_t height) : name(name), width(width), height(height) {
}