15 lines
330 B
C#
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;
|
|
} |