コード例 #1
0
 public InternalCommand(InternalCommandType type, ClipSlot clipSlot, ClipReference[] clipReferences = null)
 {
     Type           = type;
     ClipSlot       = clipSlot;
     ClipReferences = clipReferences ?? new ClipReference[0];
 }
コード例 #2
0
 public InternalCommand(InternalCommandType type, ClipSlot clipSlot, ClipReference[] clipReferences)
 {
     Type           = type;
     ClipSlot       = clipSlot;
     ClipReferences = clipReferences;
 }