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