OnRentableShopClosed
Usage
- No return behavior
Example Autogenerated
csharp
private void OnRentableShopClosed( RentableShop instance, bool notify )
{
Puts( "OnRentableShopClosed works!" );
}Location
- RentableShop::OnShopClosed(bool notify)
csharp
//---
BasePlayer.RecordToastToPlayOnReconnect(GameTip.Styles.Error, Phrase_ShopClosedNotificationPhrase, ShopOwnerId);
}
}
ShopOwnerId = 0uL;
CancelInvoke(DeductRent);
Interface.CallHook("OnRentableShopClosed", this, notify);
}