示例#1
0
        public unsafe bool UseOn(Identity target)
        {
            IntPtr pEngine = N3Engine_t.GetInstance();

            if (pEngine == IntPtr.Zero)
            {
                return(false);
            }

            bool successful = N3EngineClientAnarchy_t.SecondarySpecialAttack(pEngine, &target, _stat);

            if (successful)
            {
                _nextAttack = Time.NormalTime + ATTACK_DELAY_BUFFER;
            }

            return(successful);
        }