예제 #1
0
    public void DropItem()
    {
        var item = bagManager.Drop();

        if (item == null)
        {
            return;
        }
        levelManager.applyItemToCharacter(item);
        item.drop();
    }