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.
23 lines
582 B
23 lines
582 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;
|
|
#endif
|
|
}
|
|
}
|