public RemoveBombObserver(RemoveBombObserver m) { Debug.Assert(m.pBomb != null); Debug.Assert(m.pSubB != null); this.pBomb = m.pBomb; this.pEvent = new RemoveBombEvent(); this.pSubB = m.pSubB; }
public RemoveBombObserver() { this.pBomb = null; this.pEvent = null; this.pSubB = null; }