mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 00:48:00 +01:00
21 lines
453 B
C#
21 lines
453 B
C#
|
using GameDataEditor;
|
||
|
|
||
|
namespace Fie.Manager
|
||
|
{
|
||
|
public class FieAcvitityQueue
|
||
|
{
|
||
|
public float showingTime;
|
||
|
|
||
|
public GDEConstantTextListData titleTextData;
|
||
|
|
||
|
public GDEConstantTextListData noteTextData;
|
||
|
|
||
|
public FieAcvitityQueue(float showingTime, GDEConstantTextListData titleTextData, GDEConstantTextListData noteTextData)
|
||
|
{
|
||
|
this.showingTime = showingTime;
|
||
|
this.titleTextData = titleTextData;
|
||
|
this.noteTextData = noteTextData;
|
||
|
}
|
||
|
}
|
||
|
}
|