1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-10-04 17:25:09 -04:00
OpenDiablo2/OpenDiablo2.Common/Enums/eButtonType.cs
Kacper Drobny 5d404cbaa0 code refactoring, added close button to panels, adjustment of items positions (#38)
* refactoring of minipanel
* Yet another refactoring of panels
* removed unnecessary fields
* panel location is now relative to the panel position
* resource paths refactoring
2018-12-08 16:08:59 -05:00

24 lines
438 B
C#

namespace OpenDiablo2.Common.Enums
{
public enum eButtonType
{
Wide,
Medium,
Narrow,
Cancel,
Tall,
// Game UI
Run,
Menu,
GoldCoin,
Close,
MinipanelCharacter,
MinipanelInventory,
MinipanelSkill,
MinipanelAutomap,
MinipanelMessage,
MinipanelQuest,
MinipanelMenu
}
}