17 lines
432 B
C#
17 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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();
|
|
}
|
|
}
|