mirror of
https://github.com/unknownworlds/NS.git
synced 2024-12-02 09:12:01 +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
|