Files
BlitzNext/compiler/var.h
T

15 lines
134 B
C
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef VAR_H
#define VAR_H
struct Type;
struct Var{
int index;
Type *type;
Var( int i,Type *t ):index(i),type(t){}
};
#endif