Exemple #1
0
    public bool Belongs(TouhouSortSortable touhou)
    {
        // Checks if a given sortable belongs in this zone
        bool belongs = false;

        if (touhou.GetStyle() == style)
        {
            belongs = true;
        }

        if (invert)
        {
            belongs = !belongs;
        }

        return(belongs);
    }