generated from max/template-unity-project
14 lines
419 B
C#
14 lines
419 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace VertexColor.ScenePartition
|
||
|
{
|
||
|
[System.Serializable]
|
||
|
public class ScenePartitionSortedList : SerializableSortedList<uint, ScenePartition> { }
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class UintSortedSet : SerializableSortedSet<uint> { }
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class SceneGridDictionary : SerializableDictionary<Vector2, List<uint>> { }
|
||
|
}
|