Z-Sharp/Slang/main.h
sam-astro 9874d03b3f Added many built-in functions and variables, also allowed for displaying graphics.
Graphics are currently *very* slow, and that is due to my underlying code. I will need to spend the next week or so just optimizing.
2022-01-02 15:33:17 -05:00

9 lines
135 B
C++

#ifndef MAIN_H
#define MAIN_H
using namespace std;
string ExecuteFunction(string functionName, vector<string> inputVarVals);
#endif