12 lines
No EOL
244 B
C++
12 lines
No EOL
244 B
C++
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) {
|
|
|
|
} |