14 lines
316 B
C
14 lines
316 B
C
|
|
#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);
|
||
|
|
}
|