powerfun-unity/Assets/Scripts/UI/Prefab/Panel/EditUserController.cs

20 lines
334 B
C#
Raw Normal View History

2021-03-30 14:23:41 +08:00
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()
{
}
}