All references are baked into the assembly with the corresponding IL instruction when compiling. Because no lookup will take place, it will "increase" the performance.
19 lines
762 B
C#
19 lines
762 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
namespace FlaxEditor.Utilities
|
|
{
|
|
/// <summary>
|
|
/// Editor constants and global properties.
|
|
/// </summary>
|
|
internal class Constants
|
|
{
|
|
public const string DiscordUrl = "https://flaxengine.com/discord";
|
|
public const string DocsUrl = "https://docs.flaxengine.com/";
|
|
public const string BugTrackerUrl = "https://github.com/FlaxEngine/FlaxEngine/issues";
|
|
public const string WebsiteUrl = "https://flaxengine.com";
|
|
public const string FacebookUrl = "https://facebook.com/FlaxEngine";
|
|
public const string YoutubeUrl = "https://youtube.com/c/FlaxEngine";
|
|
public const string TwitterUrl = "https://twitter.com/FlaxEngine";
|
|
}
|
|
}
|