9 lines
No EOL
231 B
C#
9 lines
No EOL
231 B
C#
using Godot;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly Vector2 ScreenSize = new(256, 192);
|
|
public static readonly Vector2 HalfScreenSize = ScreenSize / 2;
|
|
|
|
public const float MaxFlashlightRadius = 32;
|
|
} |