Files
BlitzNext/compiler/var.hpp
T
Michael Fabian 'Xaymar' Dirks 0065ff4328 compiler: CMake-ify
2019-01-18 15:55:51 +01:00

15 lines
134 B
C++

#ifndef VAR_H
#define VAR_H
struct Type;
struct Var{
int index;
Type *type;
Var( int i,Type *t ):index(i),type(t){}
};
#endif