Skip to content

Instantly share code, notes, and snippets.

View DanielBatteryStapler's full-sized avatar

DanielBatteryStapler DanielBatteryStapler

View GitHub Profile
#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: