17 lines
345 B
C#
17 lines
345 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using WI;
|
|
|
|
namespace CHN
|
|
{
|
|
public abstract class SettingPanel : PanelBase
|
|
{
|
|
internal abstract void Reset();
|
|
internal abstract void Accept();
|
|
internal abstract void Open();
|
|
internal abstract void Close();
|
|
}
|
|
}
|