ace/Source/ACE.Entity/Enum/ModificationOperation.cs
Ty Conner dfd610bc7a
Add Bitfield operations to ReceipeManager (#3840)
* Add Bitfield operations to ReceipeManager

* Update RecipeManager.cs

* Update RecipeManager.cs
2022-05-07 15:26:15 -04:00

18 lines
529 B
C#

namespace ACE.Entity.Enum
{
public enum ModificationOperation
{
None = 0,
SetValue = 1,
Add = 2,
CopyFromSourceToTarget = 3,
CopyFromSourceToResult = 4,
Unknown1 = 5,
Unknown2 = 6,
AddSpell = 7,
// assumed to have been added to handle some bitfield int properties?
SetBitsOn = 8,
SetBitsOff = 9
};
}