public void MakeSelectable(CustomizationManager cm)
    {
        switch (costumeType)
        {
        case CostumeType.outfit:
            cm.AddCostume(this);
            break;

        case CostumeType.hair:
            cm.AddHairStyle(this);
            break;

        case CostumeType.face:
            cm.AddFace(this);
            break;
        }
    }