#pragma once #ifndef AI_H #define AI_H #include "API.h" class IAI { public: virtual void play(IAPI& api) = 0; }; #endif
Mirror of https://github.com/eesast/THUAI6.git