migration from new repo
This commit is contained in:
commit
423134a840
26930 changed files with 3458568 additions and 0 deletions
17
Assets/_/Features/Quests/Runtime/Events/QuestEventLog.cs
Normal file
17
Assets/_/Features/Quests/Runtime/Events/QuestEventLog.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue