Trigger, Action 역할 재정의

This commit is contained in:
2018-10-01 02:02:30 +09:00
parent 5f8e4ae10c
commit d2c5c856ab
70 changed files with 372 additions and 262 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace sammo;
interface iObjectTrigger{
public function getPriority():int;
public function action(?array $env=null, $arg=null):?array;
public function getUniqueID():string;
}
?>