1234567891011121314151617181920212223242526 |
- #pragma once
- #include "Model3D.h"
- namespace Framework
- {
- class Textur;
-
- class TexturModel : public Model3D
- {
- public:
-
- DLLEXPORT TexturModel();
-
-
- DLLEXPORT void setTextur( Textur *t );
-
-
- DLLEXPORT void setSize( Vec2< float > gr );
-
-
-
- DLLEXPORT void setSize( float b, float h );
- };
- }
|