Vertex.h 240 B

123456789101112131415161718
  1. #ifndef VERTEX_H
  2. #define VERTEX_H
  3. #include "client/math/Vector.h"
  4. struct Vertex final {
  5. public:
  6. Vertex();
  7. Vertex(const Vertex& orig);
  8. virtual ~Vertex();
  9. private:
  10. Vector position;
  11. float tx;
  12. float ty;
  13. };
  14. #endif