clientAI.h 358 B

12345678910111213
  1. #ifndef __CLIENTAI_H__
  2. #define __CLIENTAI_H__
  3. #include "common.h"
  4. #define DLL_EXPORT extern "C" __declspec(dllexport)
  5. DLL_EXPORT void init(int totalSet);
  6. DLL_EXPORT void beginSet(int cntSet);
  7. DLL_EXPORT void endSet(int result);
  8. DLL_EXPORT ACTION getAction(int cntRound, int myMP, int myState, int opMP, int opState, ACTION opAction);
  9. #endif