first commit
This commit is contained in:
17
NitroxModel/Packets/DebugStartMapPacket.cs
Normal file
17
NitroxModel/Packets/DebugStartMapPacket.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using NitroxModel.DataStructures.Unity;
|
||||
|
||||
namespace NitroxModel.Packets
|
||||
{
|
||||
[Serializable]
|
||||
public class DebugStartMapPacket : Packet
|
||||
{
|
||||
public List<NitroxVector3> StartPositions { get; }
|
||||
|
||||
public DebugStartMapPacket(List<NitroxVector3> startPositions)
|
||||
{
|
||||
StartPositions = startPositions;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user