Ejemplo n.º 1
0
        protected void TriggerWatchCookingReactionBroadcaster()
        {
            PetWatchableFoodInteractionHelper petWatchableCookingHelper = this.GetPetWatchableCookingHelper();

            if (petWatchableCookingHelper != null)
            {
                petWatchableCookingHelper.TriggerReactionBroadcaster(this.Actor);
            }
        }
Ejemplo n.º 2
0
        public void RegisterUserDirectedThrowScrap(Sim pet)
        {
            PetWatchableFoodInteractionHelper petWatchableCookingHelper = this.GetPetWatchableCookingHelper();

            if (petWatchableCookingHelper != null)
            {
                petWatchableCookingHelper.RegisterUserDirectedThrowScrap(pet);
            }
        }
Ejemplo n.º 3
0
        public void UnregisterPetWatching(Sim pet)
        {
            PetWatchableFoodInteractionHelper petWatchableCookingHelper = this.GetPetWatchableCookingHelper();

            if (petWatchableCookingHelper != null)
            {
                petWatchableCookingHelper.UnregisterPetWatching(pet);
            }
        }
Ejemplo n.º 4
0
        public List <Sim> GetWatchingPets()
        {
            PetWatchableFoodInteractionHelper petWatchableCookingHelper = this.GetPetWatchableCookingHelper();

            if (petWatchableCookingHelper != null)
            {
                return(petWatchableCookingHelper.GetWatchingPets());
            }
            return(new List <Sim>());
        }