2025-01-22 16:18:30 +01:00

9 lines
101 B
C++

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