Files
SM64Lib/SM64Lib/Behaviors/BehaviorParamsInfo.cs
2024-06-05 19:21:19 +02:00

10 lines
285 B
C#

namespace SM64Lib.Behaviors;
public class BehaviorParamsInfo
{
public BehaviorParamInfo Param1 { get; } = new();
public BehaviorParamInfo Param2 { get; } = new();
public BehaviorParamInfo Param3 { get; } = new();
public BehaviorParamInfo Param4 { get; } = new();
}