11 lines
209 B
C#
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.5);
|
|
public const int Height = (int) (180 * 1.5);
|
|
}
|
|
}
|