Add surface_vertices field to Objects

This commit is contained in:
Hanno Braun 2022-10-12 14:38:34 +02:00
parent e7c007a4b4
commit 93cc9f6ffb

View File

@ -121,6 +121,9 @@ pub struct Objects {
/// Store for global vertices
pub global_vertices: Store<GlobalVertex>,
/// Store for surface vertices
pub surface_vertices: Store<SurfaceVertex>,
/// Store for surfaces
pub surfaces: Surfaces,
}