2023-06-26 01:03:14 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace VertexColor.ScenePartition
|
|
|
|
{
|
|
|
|
[System.Serializable]
|
|
|
|
public class ScenePartitionSortedList : SerializableSortedList<uint, ScenePartition> { }
|
|
|
|
|
|
|
|
[System.Serializable]
|
|
|
|
public class UintSortedSet : SerializableSortedSet<uint> { }
|
|
|
|
|
|
|
|
[System.Serializable]
|
2023-06-28 01:07:27 +02:00
|
|
|
public class SceneGridDictionary : SerializableDictionary<int, List<uint>> { }
|
2023-06-26 01:03:14 +02:00
|
|
|
}
|