mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
10 lines
117 B
C++
10 lines
117 B
C++
#pragma once
|
|
|
|
class DummyWindow
|
|
{
|
|
public:
|
|
HWND handle;
|
|
DummyWindow(int width, int height);
|
|
~DummyWindow(void);
|
|
};
|