generated from hertog/godot-module-template
13 lines
186 B
C++
13 lines
186 B
C++
#ifndef CLIENT_WINDOW_H
|
|
#define CLIENT_WINDOW_H
|
|
|
|
#include "scene/main/window.h"
|
|
|
|
class ClientWindow : public Window {
|
|
GDCLASS(ClientWindow, Window);
|
|
|
|
|
|
};
|
|
|
|
#endif // !CLIENT_WINDOW_H
|