namespace FMOD { public partial class VERSION { #if DEVELOPMENT_BUILD public const string dllSuffix = "L"; #else public const string dllSuffix = ""; #endif #if UNITY_EDITOR public const string dll = "fmodL"; #elif UNITY_STANDALONE_WIN public const string dll = "fmod" + dllSuffix; #elif UNITY_WSA public const string dll = "fmod" + dllSuffix; #elif UNITY_STANDALONE_LINUX public const string dll = "fmod" + dllSuffix; #elif UNITY_STANDALONE_OSX public const string dll = "fmod" + dllSuffix; #endif } }