예제 #1
0
        public int addItem(Item _item)
        {
            Slots[firstEmpty()] = _item;
            UpdateStats();
            MyPlayer.updateStats(TotalStats);

            currentItems++;
            return(firstEmpty());
        }