source: GTP/trunk/App/Games/Jungle_Rumble/src/RenderTarget.h @ 1378

Revision 1378, 244 bytes checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#pragma once
2
3class RenderTarget
4{
5public:
6        RenderTarget();
7        RenderTarget(int width, int height, D3DFORMAT format);
8        ~RenderTarget(void);
9
10        friend class Scene;
11protected:
12
13        virtual void activate();
14        virtual void deactivate();
15};
Note: See TracBrowser for help on using the repository browser.