mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 05:17:13 +08:00
14 lines
308 B
C#
14 lines
308 B
C#
|
|
namespace Data
|
||
|
|
{
|
||
|
|
public class StoryStageDef : Define
|
||
|
|
{
|
||
|
|
public float lastWaitTime = 0;
|
||
|
|
public float nextWaitTime = 0;
|
||
|
|
public EventDef eventDef;
|
||
|
|
public MessageDef messageDef;
|
||
|
|
}
|
||
|
|
public class StoryDef:Define
|
||
|
|
{
|
||
|
|
public StoryStageDef[] storyStage;
|
||
|
|
}
|
||
|
|
}
|