コード例 #1
0
 public void AddBuffer(CentralizedBuffer buffer)
 {
     if (this._currentBuffers.Contains(buffer))
     {
         return;
     }
     buffer.Initialize();
     this._currentBuffers.Add(buffer);
     this.CreateBuffer();
 }