mirror of
https://github.com/edubart/otclient.git
synced 2025-10-21 23:05:54 +02:00
rework ui layouts, now it is more flexible and modular
This commit is contained in:
@@ -38,7 +38,7 @@ template <class T>
|
||||
class TSize
|
||||
{
|
||||
public:
|
||||
inline TSize() : wd(0), ht(0) {};
|
||||
inline TSize() : wd(-1), ht(-1) {};
|
||||
inline TSize(T width, T height) : wd(width), ht(height) { };
|
||||
inline TSize(const TSize<T>& other) : wd(other.wd), ht(other.ht) { };
|
||||
|
||||
|
Reference in New Issue
Block a user