15 lines
283 B
C#
15 lines
283 B
C#
![]() |
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BlueWater
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class SerializableKeyValuePair<T>
|
||
|
{
|
||
|
[field: SerializeField]
|
||
|
public string Key { get; set; }
|
||
|
|
||
|
[field: SerializeField]
|
||
|
public T Value { get; set; }
|
||
|
}
|
||
|
}
|