19 lines
329 B
C#
19 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.ObjectModels.Setup.ArkAngles
|
|
{
|
|
public abstract class Action : ICloneable
|
|
{
|
|
public class ActionCollection
|
|
: System.Collections.ObjectModel.Collection<Action>
|
|
{
|
|
|
|
}
|
|
|
|
public abstract object Clone();
|
|
}
|
|
}
|