mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-17 09:56:07 -05:00
a3208e26f2
Initial Character Panel Work
12 lines
200 B
C#
12 lines
200 B
C#
using OpenDiablo2.Common.Enums;
|
|
using System;
|
|
|
|
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IPanelFrame : IDisposable
|
|
{
|
|
void Render();
|
|
void Update();
|
|
}
|
|
}
|