mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 06:37:12 +08:00
12 lines
221 B
C#
12 lines
221 B
C#
|
|
using Base;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace EventWorkClass
|
||
|
|
{
|
||
|
|
public abstract class EventWorkClassBase
|
||
|
|
{
|
||
|
|
public abstract void Init(string value);
|
||
|
|
|
||
|
|
public abstract void Run(string dimensionID);
|
||
|
|
}
|
||
|
|
}
|