QuestList.AddtoProcessing C# (CSharp) Method

AddtoProcessing() public method

public AddtoProcessing ( int id ) : bool
id int
return bool
    public bool AddtoProcessing(int id)
    {
        if (Quest_Processing_List.Exists(x => x == id))
            return false;
        Quest_Processing_List.Add(id);
        return true;
    }