powerfun-unity/Assets/Scripts/UI/Prefab/Panel/EditUserController.cs
2021-03-30 14:23:41 +08:00

20 lines
334 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EditUserController : PFUIPanel
{
// Start is called before the first frame update
protected override void Start()
{
base.Start();
}
// Update is called once per frame
void Update()
{
}
}