You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
256 B

4 years ago
  1. #pragma once
  2. #include "utils.h"
  3. #include "vertexbuffer.h"
  4. #include "shader.h"
  5. class Ground {
  6. VertexBuffer *mVertexBuffer;
  7. Shader *mShader;
  8. glm::mat4 mModelMatrix;
  9. public:
  10. void Init();
  11. void Draw(glm::mat4 & viewMatrix, glm::mat4 & projectionMatrix);
  12. };