sneak/Jumpy.Shared/Camera.cs

11 lines
209 B
C#
Raw Normal View History

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