예제 #1
0
        //private int clickCount = 0;
        public void onMouseClick()
        {
            if (pausebg || m_start == false)
            {
                return;
            }
            for (int i = 0; i < genMonstors.Count; i++)
            {
                MonstorSpr m = genMonstors[i];
                if (m.IsCurrent())
                {
                    m.moveFlag = true;
                    doClone(m);

                    break;
                }
            }
        }