first commit
This commit is contained in:
16
NitroxModel/Packets/GoalCompleted.cs
Normal file
16
NitroxModel/Packets/GoalCompleted.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user