8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
|
import { Action } from "../../CatanEngine/CSharp/System/Action";
|
||
|
|
||
|
export class UIManager {
|
||
|
public static readonly ScreenScale = 0.58;
|
||
|
/**橫直切換監聽 */
|
||
|
public static readonly DireEvent: Action<any[]> = new Action<any[]>();
|
||
|
|
||
|
}
|