first commit
This commit is contained in:
19
NitroxModel/Packets/PDAEncyclopediaEntryAdd.cs
Normal file
19
NitroxModel/Packets/PDAEncyclopediaEntryAdd.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class PDAEncyclopediaEntryAdd : Packet
|
||||
{
|
||||
public string Key { get; }
|
||||
/// <summary>
|
||||
/// If true, shows a notification to the player.
|
||||
/// </summary>
|
||||
public bool Verbose { get; }
|
||||
|
||||
public PDAEncyclopediaEntryAdd(string key, bool verbose)
|
||||
{
|
||||
Key = key;
|
||||
Verbose = verbose;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user