first commit
This commit is contained in:
16
NitroxModel/Packets/PDALogEntryAdd.cs
Normal file
16
NitroxModel/Packets/PDALogEntryAdd.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class PDALogEntryAdd : Packet
|
||||
{
|
||||
public string Key { get; }
|
||||
public float Timestamp { get; }
|
||||
|
||||
public PDALogEntryAdd(string key, float timestamp)
|
||||
{
|
||||
Key = key;
|
||||
Timestamp = timestamp;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user