コード例 #1
0
ファイル: Drop.cs プロジェクト: tesfabpel/BurningKnight
        public static void Create(string id, Entity entity, Area area = null, Dot where = null)
        {
            var drop = Drops.Get(id);

            if (drop == null)
            {
                return;
            }

            Create(new List <Drop> {
                drop
            }, entity, area, where);
        }