sneak/Jumpy.Shared/Camera.cs

11 lines
191 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Jumpy {
class Camera {
public const int Width = 1920 / 4;
public const int Height = 1080 / 4;
}
}