Base.h 97 B

123456789
  1. #pragma once
  2. #include "GameObject.h"
  3. class Base : public GameObject
  4. {
  5. private:
  6. int team;
  7. };