migration from new repo

This commit is contained in:
mrtoine 2025-09-06 23:56:47 +02:00
commit 423134a840
26930 changed files with 3458568 additions and 0 deletions

View 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;
}
}
}