mirror of
https://github.com/edubart/otclient.git
synced 2025-12-16 05:39:47 +01: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