Updates various systems to the new InputCommandHandler delegate signature, implementing the new handled return value.
Modifies the construction system to use the newer InputHandler system, instead of the older ClickComponent system. Updates the engine submodule.
This commit is contained in:
@@ -371,9 +371,19 @@ namespace Content.Server.GameObjects.Components.Power
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The different methods that a <see cref="PowerDeviceComponent"/> can use to connect to a power network.
|
||||
/// </summary>
|
||||
public enum DrawTypes
|
||||
{
|
||||
/// <summary>
|
||||
/// This device cannot be connected to a power network.
|
||||
/// </summary>
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// This device can connect to a <see cref=""/>
|
||||
/// </summary>
|
||||
Node = 1,
|
||||
Provider = 2,
|
||||
Both = 3,
|
||||
|
||||
Reference in New Issue
Block a user