first commit
This commit is contained in:
17
NitroxModel/Packets/FMODCustomLoopingEmitterPacket.cs
Normal file
17
NitroxModel/Packets/FMODCustomLoopingEmitterPacket.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class FMODCustomLoopingEmitterPacket : Packet
|
||||
{
|
||||
public NitroxId Id { get; }
|
||||
public string AssetPath { get; }
|
||||
|
||||
public FMODCustomLoopingEmitterPacket(NitroxId id, string assetPath)
|
||||
{
|
||||
Id = id;
|
||||
AssetPath = assetPath;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user