10 lines
285 B
C#
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();
|
|
}
|