예제 #1
0
 protected override void DoWrite(OnlineWriter WriteBuffer)
 {
     WriteBuffer.AppendInt32(ArrayActionPanel.Length);
     foreach (ActionPanel ActiveActionPanel in ArrayActionPanel)
     {
         ActiveActionPanel.Write(WriteBuffer);
     }
 }
예제 #2
0
        protected override void DoWrite(OnlineWriter WriteBuffer)
        {
            List <ActionPanel> ListActionPanel = ActivePanel.GetActionPanels();

            WriteBuffer.AppendInt32(ListActionPanel.Count);
            foreach (ActionPanel ActiveActionPanel in ListActionPanel)
            {
                ActiveActionPanel.Write(WriteBuffer);
            }
        }