forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL2Shortcut.cs
More file actions
28 lines (26 loc) · 862 Bytes
/
Copy pathL2Shortcut.cs
File metadata and controls
28 lines (26 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace L2dotNET.Models.Player.General
{
public class L2Shortcut
{
public const int TypeItem = 1;
public const int TypeSkill = 2;
public const int TypeAction = 3;
public const int TypeMacro = 4;
public const int TypeRecipe = 5;
public int Slot { get; set; }
public int Page { get; set; }
public int Type { get; set; }
public int Id { get; set; }
public int Level { get; set; }
public int CharacterType { get; set; }
public L2Shortcut(int slotId, int pageId, int shortcutType, int shortcutId, int shortcutLevel, int characterType)
{
Slot = slotId;
Page = pageId;
Type = shortcutType;
Id = shortcutId;
Level = shortcutLevel;
CharacterType = characterType;
}
}
}