You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
743 B
27 lines
743 B
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;
|
|
#elif UNITY_PS4 || UNITY_PS5
|
|
public const string dll = "libfmod" + dllSuffix;
|
|
#elif UNITY_GAMECORE
|
|
public const string dll = "fmod" + dllSuffix;
|
|
#endif
|
|
}
|
|
}
|