Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. //
  2. // Created by Petr on 4/20/2018.
  3. //
  4.  
  5. #include <BWAPI.h>
  6.  
  7. #ifndef PROJEKT_SCBOT_H
  8. #define PROJEKT_SCBOT_H
  9.  
  10.  
  11. class SCBot : public BWAPI::AIModule {
  12.  
  13. public:
  14. SCBot();
  15.  
  16. virtual ~SCBot();
  17.  
  18.  
  19. };
  20.  
  21. extern "C" __declspec(dllexport) BWAPI::AIModule* newAIModule()
  22. {
  23. return new SCBot();
  24. }
  25. #endif //PROJEKT_SCBOT_H
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33. CPP:
  34.  
  35.  
  36.  
  37.  
  38. //
  39. // Created by Petr on 4/20/2018.
  40. //
  41.  
  42. #include "SCBot.h"
  43.  
  44.  
  45. SCBot::SCBot() {}
  46.  
  47. SCBot::~SCBot() {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement