12 lines
163 B
C#
12 lines
163 B
C#
|
using System;
|
||
|
|
||
|
namespace RoR2.Scripts.GameBehaviors.UI;
|
||
|
|
||
|
[Serializable]
|
||
|
public struct ObjectiveStripAnimationParam
|
||
|
{
|
||
|
public string Param;
|
||
|
|
||
|
public float Value;
|
||
|
}
|