Initial commit
This commit is contained in:
13
src/data/data.h
Normal file
13
src/data/data.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "../defs/defs.h"
|
||||
|
||||
namespace data {
|
||||
extern std::map<std::string, Value> vars;
|
||||
extern std::map<std::string, std::vector<Instruction>> functions;
|
||||
void modifyValue(std::string key, Value value);
|
||||
Value getValue(std::string key);
|
||||
}
|
||||
Reference in New Issue
Block a user