Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Display.hpp
1#pragma once
2
3#include <stdint.h>
4
5namespace Grindstone {
6 struct Display {
7 public:
8 uint32_t monitorId = 0;
9 uint32_t x = 0;
10 uint32_t y = 0;
11 uint32_t width = 0;
12 uint32_t height = 0;
13 };
14}
Definition Display.hpp:6