Example #1
0
    public BaseCharachteristics GetFollowerByID(int id)
    {
        BaseCharachteristics b = null;

        foreach (var o in NPCSystem.followers)
        {
            if (o.id == id)
            {
                b = o;
            }
        }
        return(b);
    }
Example #2
0
    public static BaseCharachteristics GetFollowerByID(int id)
    {
        BaseCharachteristics b = null;

        foreach (var o in applicants)
        {
            if (o.id == id)
            {
                b = o;
            }
        }
        return(b);
    }