0ad/source/terrain/Visual.h
2004-04-13 11:09:36 +00:00

18 lines
211 B
C++
Executable File

#ifndef _VISUAL_H
#define _VISUAL_H
#include "RenderableObject.h"
class CModel;
class CVisual : public CRenderableObject
{
public:
CVisual() : m_Model(0) {}
void CalcBounds();
CModel* m_Model;
};
#endif