13 lines
187 B
C#
13 lines
187 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class WarnPanel : BasePanel
|
||
|
{
|
||
|
public override void Start()
|
||
|
{
|
||
|
base.Start();
|
||
|
|
||
|
}
|
||
|
}
|