2
0

PolyCubemap.h 463 B

123456789101112131415161718192021222324252627
  1. /*
  2. * PolyCubemap.h
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 9/9/09.
  6. * Copyright 2009 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. // @package Materials
  10. #pragma once
  11. #include "PolyGlobals.h"
  12. #include "PolyResource.h"
  13. #include "PolyTexture.h"
  14. namespace Polycode {
  15. class _PolyExport Cubemap : public Resource {
  16. public:
  17. Cubemap(Texture *t0, Texture *t1, Texture *t2, Texture *t3, Texture *t4, Texture *t5);
  18. ~Cubemap();
  19. protected:
  20. };
  21. }