Add vec2 type

This commit is contained in:
sam-astro 2022-01-12 08:54:45 -05:00 committed by GitHub
parent 57deb5a790
commit ee147bd78a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@
using namespace std;
using namespace boost;
vector<string> types = { "int", "float", "string", "bool", "void", "null", "Sprite"};
vector<string> types = { "int", "float", "string", "bool", "void", "null", "Sprite", "Vec2"};
unordered_map<string, vector<vector<string>>> builtinFunctionValues;
unordered_map<string, boost::any> builtinVarVals;