Add more utilities to LayersMask

This commit is contained in:
Wojtek Figat
2021-02-25 15:46:10 +01:00
parent 5d2fe5908b
commit 26607c1d09
6 changed files with 220 additions and 15 deletions

View File

@@ -42,16 +42,6 @@ bool LayersMask::HasLayer(const StringView& layerName) const
return HasLayer(Level::GetLayerIndex(layerName));
}
bool LayersMask::operator==(const LayersMask& other) const
{
return Mask == other.Mask;
}
bool LayersMask::operator!=(const LayersMask& other) const
{
return Mask != other.Mask;
}
enum class SceneEventType
{
OnSceneSaving = 0,