mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
f3793e0a60
* Initial minipanel work * Character and Inventory panel implementation, frame included * Separate panel frame from the actual inventory and character panels so they can be reused by other panels
11 lines
171 B
C#
11 lines
171 B
C#
using System;
|
|
|
|
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IInventoryPanel : IDisposable
|
|
{
|
|
void Render();
|
|
void Update();
|
|
}
|
|
}
|