mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-01-03 06:13:45 +01:00
.
This commit is contained in:
parent
90e451049e
commit
d621369094
12 changed files with 387 additions and 58 deletions
|
|
@ -10,16 +10,15 @@ namespace Glamourer.Automation;
|
|||
public class AutoDesign
|
||||
{
|
||||
[Flags]
|
||||
public enum Type : uint
|
||||
public enum Type : byte
|
||||
{
|
||||
Armor = 0x01,
|
||||
Customizations = 0x02,
|
||||
Meta = 0x04,
|
||||
Weapons = 0x08,
|
||||
Stains = 0x10,
|
||||
Accessories = 0x20,
|
||||
Weapons = 0x04,
|
||||
Stains = 0x08,
|
||||
Accessories = 0x10,
|
||||
|
||||
All = Armor | Accessories | Customizations | Meta | Weapons | Stains,
|
||||
All = Armor | Accessories | Customizations | Weapons | Stains,
|
||||
}
|
||||
|
||||
public Design Design;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue