Bone-Market-Solver/bonemarketsolver/data/fluctuations.py
Jeremy Saklad 97aedc0895
Add __slots__ to data enumerations
These types still have a __dict__, since they inherit from Enum, but
using __slots__ for the inherited properties can still improve access
times.
2021-09-18 19:18:40 -05:00

14 lines
265 B
Python

__all__ = ['Fluctuation']
__author__ = "Jeremy Saklad"
from enum import Enum
class Fluctuation(Enum):
"""Which skeleton attribute is currently boosted."""
__slots__ = '_value_', '_name_', '__objclass__'
ANTIQUITY = 1
AMALGAMY = 2
MENACE = 3