부대 이동 관련 초기 코드

This commit is contained in:
2024-09-17 00:48:54 +09:00
parent 86f1805160
commit 04a7a34fcc
7 changed files with 235 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace sammo;
abstract class BaseStaticEvent {
function __construct(){
}
abstract function run(General $general, array $env, array $params): bool | string;
}