blob: 3d816b929f7e9d2b8ebe866c01030e6d1419b84d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef ENGINE_OBJECTS_H
#define ENGINE_OBJECTS_H
class Mesh;
Mesh *form_cube();
Mesh *form_sphere(int longitude_count, int latitude_count);
Mesh *form_circle(int angle_count);
#endif /* ENGINE_OBJECTS_H */
|