public bool RemovedLatestRadioMessage() { if (RadioQueue.Count <= 0) { return(false); } RadioQueue.RemoveAt(0); return(true); }
public void RemovedLatestRadioMessage() { RadioQueue.RemoveAt(0); }