13 lines
270 B
C#
13 lines
270 B
C#
![]() |
namespace Data
|
||
|
{
|
||
|
public class StoryStageDef : Define
|
||
|
{
|
||
|
public float lastWaitTime = 0;
|
||
|
public EventDef eventDef;
|
||
|
public float nextWaitTime = 0;
|
||
|
}
|
||
|
public class StoryDef:Define
|
||
|
{
|
||
|
public StoryStageDef[] storyStage;
|
||
|
}
|
||
|
}
|