r2mods/ilspy_dump/ror2_csproj/RoR2/NetworkSoundEventDef.cs

15 lines
281 B
C#
Raw Permalink Normal View History

2024-10-04 07:26:37 +00:00
using RoR2.Audio;
using UnityEngine;
namespace RoR2;
[CreateAssetMenu(menuName = "RoR2/NetworkSoundEventDef")]
public class NetworkSoundEventDef : ScriptableObject
{
public string eventName;
public NetworkSoundEventIndex index { get; set; }
public uint akId { get; set; }
}