18 lines
254 B
C++
18 lines
254 B
C++
// drawlast.h
|
|
|
|
#ifndef _3DRENDERER_DRAWLAST_H_
|
|
#define _3DRENDERER_DRAWLAST_H_
|
|
|
|
#include "drawrendermeshd3d.h"
|
|
|
|
|
|
class CDrawLastD3d : public CDrawRenderMeshD3d
|
|
{
|
|
public:
|
|
CDrawLastD3d();
|
|
virtual ~CDrawLastD3d();
|
|
|
|
};
|
|
|
|
#endif // _3DRENDERER_DRAWLAST_H_
|