예제 #1
0
		public List<int> BaetylusEffectStop(userspace.Helper.EffectInfo[] aEffects)
		{
			userspace.Helper cHelper = new userspace.Helper();
			List<int> aHashes = new List<int>();
			List<int> aRetVal = new List<int>();
			try
			{
				foreach (userspace.Helper.EffectInfo cEI in aEffects)
					aHashes.Add(cEI.nHashCode);
				aRetVal = cHelper.BaetylusEffectStop(aHashes);
			}
			catch (Exception ex)
			{
				(new Logger()).WriteError(ex);
			}
			return aRetVal;
		}
예제 #2
0
        public List <int> BaetylusEffectStop(userspace.Helper.EffectInfo[] aEffects)
        {
            userspace.Helper cHelper = new userspace.Helper();
            List <int>       aHashes = new List <int>();
            List <int>       aRetVal = new List <int>();

            try
            {
                foreach (userspace.Helper.EffectInfo cEI in aEffects)
                {
                    aHashes.Add(cEI.nHashCode);
                }
                aRetVal = cHelper.BaetylusEffectStop(aHashes);
            }
            catch (Exception ex)
            {
                (new Logger()).WriteError(ex);
            }
            return(aRetVal);
        }