| 123456789101112131415161718192021222324252627 |
- /*
- * PolyCubemap.h
- * Poly
- *
- * Created by Ivan Safrin on 9/9/09.
- * Copyright 2009 __MyCompanyName__. All rights reserved.
- *
- */
- // @package Materials
- #pragma once
- #include "PolyGlobals.h"
- #include "PolyResource.h"
- #include "PolyTexture.h"
- namespace Polycode {
-
- class _PolyExport Cubemap : public Resource {
- public:
- Cubemap(Texture *t0, Texture *t1, Texture *t2, Texture *t3, Texture *t4, Texture *t5);
- ~Cubemap();
-
- protected:
-
- };
- }
|