private PrototypeFactory()
        {
            var collectibles = new CollectibleLoader();
            var weapons      = new WeaponLoader();

            weapons.LoadItems(ref _items);
            collectibles.LoadItems(ref _items);
        }