BlueprintDatabase.Remove C# (CSharp) Method

Remove() public method

public Remove ( uint id ) : void
id uint
return void
    public void Remove(uint id)
    {
        Blueprint buf = Blueprints.Find(i => i.Id == id);
        if (buf == null)
            throw new KeyNotFoundException();
        Blueprints.Remove(buf);
        FreeIDs.Add(id);
    }