Files
2025-01-29 10:55:49 +01:00

9 lines
101 B
C++

#pragma once
namespace Kore {
struct WindowData {
int width, height, mode;
WindowData();
};
}