2023-06-26 01:03:14 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace VertexColor.ScenePartition
|
|
|
|
{
|
|
|
|
[System.Serializable]
|
2023-07-03 23:35:29 +02:00
|
|
|
public class ScenePartitionSortedList : SerializableSortedList<ulong, ScenePartition> { }
|
2023-06-26 01:03:14 +02:00
|
|
|
|
|
|
|
[System.Serializable]
|
2023-07-03 23:35:29 +02:00
|
|
|
public class LongSortedSet : SerializableSortedSet<ulong> { }
|
2023-06-26 01:03:14 +02:00
|
|
|
|
|
|
|
[System.Serializable]
|
2023-07-03 23:35:29 +02:00
|
|
|
public class SceneGridDictionary : SerializableDictionary<int, GridList> { }
|
|
|
|
|
|
|
|
[System.Serializable]
|
|
|
|
public class GridList
|
|
|
|
{
|
|
|
|
public List<ulong> list = new List<ulong>();
|
|
|
|
}
|
2023-06-26 01:03:14 +02:00
|
|
|
}
|