export abstract class FguiViewModel { public static readonly VIEW_MODEL_KEY = "VIEW_MODEL_KEY"; /** * UI的根节点 */ readonly Panel : fgui.GComponent; constructor(panel: fgui.GComponent) { this.Panel = panel; } }