sneak/Jumpy.Shared/Camera.cs
Colin McMillen 1fbcacecfc add ground texture
GitOrigin-RevId: 2313a9c0387ddb62ffca2aa563f9bab3ee10cdaf
2020-02-13 14:46:34 -05:00

11 lines
191 B
C#

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