mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-27 15:57:59 +01:00
20 lines
453 B
C#
20 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;
|
|
}
|
|
}
|
|
}
|