Gruppe22.Backend.ItemEffect.ItemEffect C# (CSharp) Метод

ItemEffect() публичный Метод

Constructor
public ItemEffect ( ItemProperty property = ItemProperty.Null, int effect, int duration ) : System
property ItemProperty Which property this effect should be, no default value
effect int The intensity of that property, by default 0
duration int The duration of that property, by default 0
Результат System
        public ItemEffect(ItemProperty property = ItemProperty.Null, int effect = 0, int duration = 0)
        {
            _property = property;
            _effect = effect;
            _duration = duration;
        }
ItemEffect