Remove unused class variable.

This commit is contained in:
Relintai 2020-04-19 23:56:11 +02:00
parent 1a1c0ade12
commit 1c0854a845
2 changed files with 0 additions and 2 deletions

View File

@ -187,7 +187,6 @@ VoxelmanLibrary::VoxelmanLibrary() {
VoxelmanLibrary::~VoxelmanLibrary() {
_materials.clear();
_liquid_materials.clear();
_clutter_materials.clear();
}
void VoxelmanLibrary::_bind_methods() {

View File

@ -94,7 +94,6 @@ private:
bool _initialized;
Vector<Ref<Material> > _materials;
Vector<Ref<Material> > _liquid_materials;
Vector<Ref<Material> > _clutter_materials;
};
#endif // VOXEL_LIBRARY_H