#pragma once class RenderTarget { public: RenderTarget(); RenderTarget(int width, int height, D3DFORMAT format); ~RenderTarget(void); friend class Scene; protected: virtual void activate(); virtual void deactivate(); };