2019-12-09 01:04:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Jumpy {
|
|
|
|
|
class Camera {
|
2019-12-09 22:26:33 +00:00
|
|
|
|
public const int Width = 1920 / 4;
|
|
|
|
|
public const int Height = 1080 / 4;
|
2019-12-09 01:04:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|