generated from max/template-unity-project
max
c42a23d6fa
- Grid generation - Grid loading - GridIds - Still having issues with serialization of the grid data structure
13 lines
396 B
C#
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>> { }
|
|
} |