Пример #1
0
        void Client_ReceiveVelocityCoefficient(RemoteEntityWorld sender, ReceiveDataReader reader)
        {
            float value = reader.ReadSignedSingle(16);

            if (!reader.Complete())
            {
                return;
            }
            client_velocityCoefficient = value;
        }
Пример #2
0
 void Client_ReceiveVelocityCoefficient( RemoteEntityWorld sender, ReceiveDataReader reader )
 {
     float value = reader.ReadSignedSingle( 16 );
     if( !reader.Complete() )
         return;
     client_velocityCoefficient = value;
 }