Example #1
0
        public void Add(AbstractPatch patch)
        {
            this.patchCollection.Add(patch);

            if (this.Finalized)
            {
                this.Finalize();
            }
        }
Example #2
0
 private void RegisterPatch(AbstractPatch patch)
 {
     patch.Updater += this.PatchUpdater;
 }