This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
class BotStruct{ | |
public: | |
virtual void printCore() = 0;//functions that need to be "filled in" by modules | |
}; | |
class BotCore: public virtual BotStruct{//a class that "fills in" those core functions | |
public: |