summaryrefslogtreecommitdiffstats
path: root/models.hpp
blob: 7b2f75121771480b0987ef8650d9c600daf56259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef ASCIIROAD_MODELS_H
#define ASCIIROAD_MODELS_H

#define SUPPORT_CHAR '?'
/* SUPPORT_CHAR use for support rectangular array */ 

struct object_info {
	const char * const *model;
	int length;
	int height;
};

#endif /* ASCIIROAD_MODELS_H */