1
0

IMplement STOP

This commit is contained in:
otya128
2017-07-04 20:28:49 +09:00
parent e5e784a9da
commit bb586dbb55
6 changed files with 31 additions and 1 deletions

View File

@@ -53,6 +53,7 @@ enum NodeType
Linput,
CallSprite,
CallBG,
StopStatement,
}
abstract class Node
{
@@ -715,3 +716,11 @@ class CallBG : Statement
this.type = NodeType.CallBG;
}
}
class StopStatement : Statement
{
this(SourceLocation loc)
{
super.location = loc;
this.type = NodeType.StopStatement;
}
}