summaryrefslogtreecommitdiff
path: root/inc/mesh.hpp
diff options
context:
space:
mode:
authorElizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz>2023-11-28 14:47:29 -0700
committerGitHub <noreply@github.com>2023-11-28 14:47:29 -0700
commit4dcdd32bf7578acf3ea9bc1e98d39d82e3e1afdd (patch)
tree2d9eb3fbc17d453ee33e478bafb9936beff12eb3 /inc/mesh.hpp
parentebc517c800a90f6f0ed157e5c3bd7c3bd18165b5 (diff)
parent3197f9e40cd7079e19990c64c98de667e2457d75 (diff)
downloadgbarubik-4dcdd32bf7578acf3ea9bc1e98d39d82e3e1afdd.tar.gz
gbarubik-4dcdd32bf7578acf3ea9bc1e98d39d82e3e1afdd.zip
Merge pull request #1 from Simponic/cubeHEADmain
Cube
Diffstat (limited to 'inc/mesh.hpp')
-rw-r--r--inc/mesh.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/mesh.hpp b/inc/mesh.hpp
index db465fb..91fa500 100644
--- a/inc/mesh.hpp
+++ b/inc/mesh.hpp
@@ -14,9 +14,9 @@ typedef struct TRIANGLE {
} TRIANGLE;
class Mesh {
-protected:
- usu::vector<VECTOR> m_vertices;
- usu::vector<TRIANGLE> m_triangles;
+public:
+ usu::vector<VECTOR> vertices;
+ usu::vector<TRIANGLE> triangles;
};
#endif // MESH_HPP