public WindowMetaInfoAttribute(string resPath, string luaScriptPath, System.Type winType = null)
 {
     WindowResPath      = resPath;
     ControllerTypeEnum = WindowControllerTypeEnum.Lua;
     WindowType         = winType;
     LuaScriptPath      = luaScriptPath;
 }
 public WindowMetaInfoAttribute(string resPath, System.Type winCtrlCsharpType, System.Type winType = null)
 {
     WindowResPath              = resPath;
     ControllerTypeEnum         = WindowControllerTypeEnum.CSharp;
     WindowType                 = winType;
     WindowControllerCSharpType = winCtrlCsharpType;
 }