DS-Pokemon-Rom-Editor/DS_Map/ROMFiles/ScriptActionContainer.cs
Miguel Terol Espino 0254b46a41 Added the levelscript editor
Co-authored-by: Cuddlyogre <cuddlyogre@users.noreply.github.com>
2024-03-03 17:35:34 +01:00

14 lines
341 B
C#

using System.Collections.Generic;
namespace DSPRE.ROMFiles {
public class ScriptActionContainer {
public List<ScriptAction> commands;
public uint manualUserID;
public ScriptActionContainer(uint actionNumber, List<ScriptAction> commands = null) {
manualUserID = actionNumber;
this.commands = commands;
}
}
}