Files
Nocturnis/src/GlobalManagement/Constants/EnigmosConstant.cs
2024-07-11 11:21:29 +01:00

15 lines
330 B
C#

using Godot;
namespace Nocturnis.GlobalManagement.Constants;
public static class EnigmosConstant
{
public static class CommunicationDirections
{
public static readonly StringName Send = "Send";
public static readonly StringName Receive = "Receive";
}
public const double IdlePower = 0.2d;
}