DS-Pokemon-Rom-Editor/DS_Map/ROMFiles/ScriptActionContainer.cs
Miguel Terol Espino 5bfbde28e9 Added the levelscript editor
Co-authored-by: Cuddlyogre <cuddlyogre@users.noreply.github.com>
2024-03-06 00:37:15 +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;
}
}
}