restructure project

This commit is contained in:
2023-08-13 11:59:13 +02:00
parent b4836847f5
commit 50c17e8ed1
210 changed files with 471 additions and 422 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
namespace td {
namespace client {
class Client;
} // namespace client
namespace gui {
class GuiWidget {
protected:
client::Client* m_Client;
public:
GuiWidget(client::Client* client) : m_Client(client) {}
client::Client* GetClient() { return m_Client; }
virtual void Render() = 0;
};
} // namespace gui
} // namespace td