/* Functional, but should be replaced with something better. */ #pragma once #include "Vectors.h" typedef struct VModel { int NumberOfVertices; Vector * Vertices; GLfloat Color[4]; } VModel; void InitModel(VModel * m); void CleanUpModel(VModel * m); Boolean AllocateVertices(VModel * m, int numberOfVertices); void DrawModel(VModel * m);