_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/lianghaoLL/LoginItem.cs

27 lines
375 B
C#
Raw Normal View History

2024-11-25 22:58:30 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoginItem : MonoBehaviour
{
public Transform contentItem;
// Start is called before the first frame update
void Start()
{
Init();
}
void Init()
{
}
// Update is called once per frame
void Update()
{
}
}