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

OnNewPropertyGet() public static method

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