aboutsummaryrefslogtreecommitdiffstats
path: root/src/objects.hpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-03-29 17:23:07 +0000
committerJoursoir <chat@joursoir.net>2021-03-29 17:23:07 +0000
commit2b4b3f95cae61b8260970dd58732a39673217b43 (patch)
tree78a08ab9043cf2206a15d859b45181faf8326a36 /src/objects.hpp
parent6d02f0a7558b27596450f9ec72d4905f8362fc25 (diff)
downloadspace-simulator-2b4b3f95cae61b8260970dd58732a39673217b43.tar.gz
space-simulator-2b4b3f95cae61b8260970dd58732a39673217b43.tar.bz2
space-simulator-2b4b3f95cae61b8260970dd58732a39673217b43.zip
add object forming
Diffstat (limited to 'src/objects.hpp')
-rw-r--r--src/objects.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/objects.hpp b/src/objects.hpp
new file mode 100644
index 0000000..74ba884
--- /dev/null
+++ b/src/objects.hpp
@@ -0,0 +1,9 @@
+#ifndef ENGINE_OBJECTS_H
+#define ENGINE_OBJECTS_H
+
+class Mesh;
+
+Mesh *form_cube();
+Mesh *form_sphere(int longitude_count, int latitude_count);
+
+#endif /* ENGINE_OBJECTS_H */