GuildTycoon/Assets/_/Features/Quests/Runtime/Events/QuestEventLog.cs
2025-09-06 23:56:47 +02:00

17 lines
323 B
C#

using System;
using System.Collections.Generic;
namespace Quests.Runtime
{
[Serializable]
public class QuestEventLog
{
public int Time;
public Guid EventId;
public QuestEventLog(int time, Guid eventId)
{
Time = time;
EventId = eventId;
}
}
}