Esempio n. 1
0
        public void PushWooHoo(Sim actor, Sim target)
        {
            try
            {
                ProxyDefinition definition = InteractionDefinition as ProxyDefinition;

                definition.PushWooHoo(actor, target);
            }
            catch (ResetException)
            {
                throw;
            }
            catch (Exception exception)
            {
                Common.Exception(actor, target, exception);
            }
        }