Creates base of script class

This commit is contained in:
2019-05-21 12:59:15 +02:00
parent 37e770f1cb
commit ad3e61128c
7 changed files with 70 additions and 12 deletions

View File

@@ -28,6 +28,10 @@ public:
unsigned int GetLength(){
return Length;
}
virtual ~IToken(){
}
};
class SimpleToken : public IToken{