PolyCubemap.h 487 B

12345678910111213141516171819202122232425262728
  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 "PolyString.h"
  12. #include "PolyGlobals.h"
  13. #include "PolyResource.h"
  14. #include "PolyTexture.h"
  15. namespace Polycode {
  16. class _PolyExport Cubemap : public Resource {
  17. public:
  18. Cubemap(Texture *t0, Texture *t1, Texture *t2, Texture *t3, Texture *t4, Texture *t5);
  19. ~Cubemap();
  20. protected:
  21. };
  22. }