generated from max/template-unity-project
max
80c90d884a
- wrapped lists in serialized dicts do work, maybe wrap anything. - note: maybe convert long fields to string fields to support ulong?
19 lines
514 B
C#
19 lines
514 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VertexColor.ScenePartition
|
|
{
|
|
[System.Serializable]
|
|
public class ScenePartitionSortedList : SerializableSortedList<ulong, ScenePartition> { }
|
|
|
|
[System.Serializable]
|
|
public class LongSortedSet : SerializableSortedSet<ulong> { }
|
|
|
|
[System.Serializable]
|
|
public class SceneGridDictionary : SerializableDictionary<int, GridList> { }
|
|
|
|
[System.Serializable]
|
|
public class GridList
|
|
{
|
|
public List<ulong> list = new List<ulong>();
|
|
}
|
|
} |