summaryrefslogtreecommitdiffstats
path: root/models.hpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-03-09 18:18:11 +0000
committerJoursoir <chat@joursoir.net>2021-03-09 18:18:11 +0000
commitcd445cccc1ccd135d006f6fbb519aeda8f90f133 (patch)
tree0c649540e0d0ae03a06c9a3ab4038993cce10fc4 /models.hpp
parentd987781b24c6f505a61a01794b6bc76b07c9b25d (diff)
downloadascii-road-cd445cccc1ccd135d006f6fbb519aeda8f90f133.tar.gz
ascii-road-cd445cccc1ccd135d006f6fbb519aeda8f90f133.tar.bz2
ascii-road-cd445cccc1ccd135d006f6fbb519aeda8f90f133.zip
change model structure
Diffstat (limited to 'models.hpp')
-rw-r--r--models.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/models.hpp b/models.hpp
new file mode 100644
index 0000000..6444123
--- /dev/null
+++ b/models.hpp
@@ -0,0 +1,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 */