11 lines
191 B
C#
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;
|
|
}
|
|
}
|