fix:1、添加项目

This commit is contained in:
2026-04-22 09:52:55 +08:00
commit 173cfb2dc9
5871 changed files with 600870 additions and 0 deletions
@@ -0,0 +1,31 @@
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.P19_Petty
{
public partial class com_account : GComponent
{
public com_email com_email;
public com_firstName com_first_name;
public com_lastName com_last_name;
public GButton btn_confirm;
public const string URL = "ui://e9w4rbkqkbzo4";
public static com_account CreateInstance()
{
return (com_account)UIPackage.CreateObject("P19_Petty", "com_account");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
com_email = (com_email)GetChildAt(4);
com_first_name = (com_firstName)GetChildAt(5);
com_last_name = (com_lastName)GetChildAt(6);
btn_confirm = (GButton)GetChildAt(7);
}
}
}