mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
This allows us to make it obsolete to *inherit* from a class, and only that. Intended so people stop inheriting UI controls for no good reason. Fixes #5856
8 lines
215 B
C#
8 lines
215 B
C#
namespace Robust.Client.UserInterface;
|
|
|
|
internal static class UIConstants
|
|
{
|
|
public const string ObsoleteInheritanceMessage =
|
|
"Do not inherit from standard UI controls, compose via nesting instead";
|
|
}
|