16 lines
611 B
C
16 lines
611 B
C
|
//---------------------------------------------------------------------------
|
||
|
// drawbase.h - base class for draw objects
|
||
|
//---------------------------------------------------------------------------
|
||
|
#pragma once
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
class CRenderObj; // forward
|
||
|
//---------------------------------------------------------------------------
|
||
|
class CDrawBase
|
||
|
{
|
||
|
public:
|
||
|
//---- data ----
|
||
|
BGTYPE _eBgType; // all draw objects must start with this
|
||
|
};
|
||
|
//---------------------------------------------------------------------------
|