暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. #ifndef PLAYER_H
  2. #define PLAYER_H
  3. #include "olcPGE_Common.h"
  4. #include "programmer.h"
  5. namespace pabloader {
  6. class Player : public Programmer {
  7. public:
  8. Player(Debuggers* game);
  9. void Think() override;
  10. };
  11. }
  12. #endif