mirror of
https://github.com/ENSL/NS.git
synced 2024-12-02 09:11:56 +00:00
15 lines
160 B
C
15 lines
160 B
C
|
|
||
|
#ifndef VGUI_LAYOUTINFO_H
|
||
|
#define VGUI_LAYOUTINFO_H
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
class VGUIAPI LayoutInfo
|
||
|
{
|
||
|
virtual LayoutInfo* getThis()=0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|