Files
jailbasic/variables.h
Raimon Zamora 567710779a [BUG] Repaired types on some parameters.
[FEAT] Implemented struct, still testing.
[FEAT] Implemented var, still testing.
2021-05-04 10:24:35 +02:00

9 lines
112 B
C++

#pragma once
struct t_variable {
std::string name;
uint32_t type;
uint32_t length;
uint32_t address;
};