sneak/Jumpy.Shared/Camera.cs
Colin McMillen fbbbdd14ee phrase world pixel-size in terms of fractions of 1080p
GitOrigin-RevId: d2a9cb18d1153a85081ac57b4dd2ddb2ab31822a
2020-02-13 14:46:07 -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 / 4;
public const int Height = 1080 / 4;
}
}