Exemplo n.º 1
0
        /// <summary>
        /// An internal function used for serializing SyncList member variables.
        /// </summary>
        /// <param name="reader"></param>
        /// <param name="syncList"></param>
        static public void ReadReference(NetworkReader reader, SyncListBool syncList)
        {
            ushort count = reader.ReadUInt16();

            syncList.Clear();
            for (ushort i = 0; i < count; i++)
            {
                syncList.AddInternal(reader.ReadBoolean());
            }
        }
Exemplo n.º 2
0
        public static void ReadReference(NetworkReader reader, SyncListBool syncList)
        {
            ushort num = reader.ReadUInt16();

            syncList.Clear();
            for (ushort num2 = 0; num2 < num; num2 += 1)
            {
                syncList.AddInternal(reader.ReadBoolean());
            }
        }