mirror of
https://github.com/ENSL/NS.git
synced 2024-12-03 17:51:53 +00:00
21 lines
363 B
C
21 lines
363 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#ifndef VGUI_LAYOUTINFO_H
|
|||
|
#define VGUI_LAYOUTINFO_H
|
|||
|
|
|||
|
namespace vgui
|
|||
|
{
|
|||
|
|
|||
|
class VGUIAPI LayoutInfo
|
|||
|
{
|
|||
|
virtual LayoutInfo* getThis()=0;
|
|||
|
};
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endif
|