mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 08:54:43 +01:00
25 lines
370 B
C#
25 lines
370 B
C#
using FullSerializer;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
[fsObject(Converter = typeof(DynamicIntConverter))]
|
|
public class DynamicInt
|
|
{
|
|
public static DynamicInt ZERO = new DynamicInt
|
|
{
|
|
fixedValue = 0
|
|
};
|
|
|
|
public static DynamicInt ONE = new DynamicInt
|
|
{
|
|
fixedValue = 1
|
|
};
|
|
|
|
public bool isDynamic;
|
|
|
|
public int fixedValue;
|
|
|
|
public string dynamicKey;
|
|
}
|
|
}
|