1bit-game-jam/scripts/Constants.cs
Ivan Kuzmenko f307a7ef00 Add new cool light beam for the flashlight
Co-authored-by: Евгений Титаренко <frundle@teasanctuary.ru>
2023-08-16 00:13:37 +03:00

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;
}