first commit
This commit is contained in:
19
NitroxModel/Packets/FMODAssetPacket.cs
Normal file
19
NitroxModel/Packets/FMODAssetPacket.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures.Unity;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class FMODAssetPacket : Packet
|
||||
{
|
||||
public string AssetPath { get; }
|
||||
public NitroxVector3 Position { get; }
|
||||
public float Volume { get; set; }
|
||||
|
||||
public FMODAssetPacket(string assetPath, NitroxVector3 position, float volume)
|
||||
{
|
||||
AssetPath = assetPath;
|
||||
Position = position;
|
||||
Volume = volume;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user