24 lines
234 B
C#
24 lines
234 B
C#
using UnityEngine;
|
|
|
|
namespace EnergyBarToolkit
|
|
{
|
|
public class Screen2
|
|
{
|
|
public static int width
|
|
{
|
|
get
|
|
{
|
|
return Screen.width;
|
|
}
|
|
}
|
|
|
|
public static int height
|
|
{
|
|
get
|
|
{
|
|
return Screen.height;
|
|
}
|
|
}
|
|
}
|
|
}
|