mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
15 lines
365 B
C#
15 lines
365 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ink.Parsed
|
|
{
|
|
public class Stitch : FlowBase
|
|
{
|
|
public override FlowLevel flowLevel { get { return FlowLevel.Stitch; } }
|
|
|
|
public Stitch (Identifier name, List<Parsed.Object> topLevelObjects, List<Argument> arguments, bool isFunction) : base(name, topLevelObjects, arguments, isFunction)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|