QuestList.RemovefromProcessing C# (CSharp) Method

RemovefromProcessing() public method

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