Files
Nitrox/NitroxModel/Packets/GoalCompleted.cs
2025-07-06 00:23:46 +02:00

17 lines
346 B
C#

using System;
namespace NitroxModel.Packets;
[Serializable]
public class GoalCompleted : Packet
{
public string CompletedGoal { get; }
public float CompletionTime { get; }
public GoalCompleted(string completedGoal, float completionTime)
{
CompletedGoal = completedGoal;
CompletionTime = completionTime;
}
}