1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-11-18 18:36:12 -05:00
OpenDiablo2/OpenDiablo2.Common/Enums/ePanelFrameType.cs
Diego M f3793e0a60 Basic Character Panel and Inventory Panel drawing (#30)
* 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
2018-11-29 19:11:25 -05:00

9 lines
114 B
C#

namespace OpenDiablo2.Common.Enums
{
public enum ePanelFrameType
{
Left,
Right
}
}