Interface.h 122 B

1234567891011
  1. #pragma once
  2. class Interface
  3. {
  4. public:
  5. Interface();
  6. ~Interface();
  7. void draw(void);
  8. void update(float deltaTime);
  9. };