CM3D2.MaidFiddler.Hook.MaidStatusChangeHooks.OnPropertyRemoved C# (CSharp) Method

OnPropertyRemoved() public static method

public static OnPropertyRemoved ( int tag, Maid &currentMaid, int id ) : void
tag int
currentMaid Maid
id int
return void
        public static void OnPropertyRemoved(int tag, ref Maid currentMaid, int id)
        {
            StatusChangedEventArgs args = new StatusChangedEventArgs
            {
                Tag = (MaidChangeType) tag,
                CallerMaid = currentMaid,
                ID = id,
                Value = -1,
                BlockAssignment = false
            };
            PropertyRemoved?.Invoke(null, args);
        }