sneak/Jumpy.Shared/Camera.cs
Colin McMillen 59764cbbbd change back to Celeste-like camera resolution
GitOrigin-RevId: 5b245ec8c0b6744eec670c8d76edd78087bcf328
2020-02-13 14:45:52 -05:00

11 lines
209 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Jumpy {
class Camera {
public const int Width = (int) (320 * 1.0);
public const int Height = (int) (180 * 1.0);
}
}