summaryrefslogtreecommitdiffstats
path: root/models.hpp
blob: 6444123dd5079b23bb97ce10d6f97574f9e631d0 (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 */