2019-12-09 01:04:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Jumpy {
|
|
|
|
|
class Camera {
|
2019-12-09 03:19:55 +00:00
|
|
|
|
public const int Width = (int) (320 * 1.0);
|
|
|
|
|
public const int Height = (int) (180 * 1.0);
|
2019-12-09 01:04:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|