ScenePartition/Runtime/SerializedStructures.cs
max c42a23d6fa Simple grid generation and loading
- Grid generation
- Grid loading
- GridIds
- Still having issues with serialization of the grid data structure
2023-06-28 01:07:27 +02:00

13 lines
396 B
C#

using System.Collections.Generic;
namespace VertexColor.ScenePartition
{
[System.Serializable]
public class ScenePartitionSortedList : SerializableSortedList<uint, ScenePartition> { }
[System.Serializable]
public class UintSortedSet : SerializableSortedSet<uint> { }
[System.Serializable]
public class SceneGridDictionary : SerializableDictionary<int, List<uint>> { }
}