mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-09 12:51:54 -05:00
14 lines
341 B
C#
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;
|
|
}
|
|
}
|
|
}
|