Ejemplo n.º 1
0
        /// <summary>
        /// Initializes a new DemoParser. Right point if you want to start analyzing demos.
        /// Hint: ParseHeader() is propably what you want to look into next.
        /// </summary>
        /// <param name="input">An input-stream.</param>
        public DemoParser(Stream input)
        {
            BitStream = BitStreamUtil.Create(input);

            for (int i = 0; i < MAXPLAYERS; i++)
            {
                additionalInformations [i] = new AdditionalPlayerInformation();
            }
        }
Ejemplo n.º 2
0
 public DemoParser(Stream input)
 {
     BitStream = BitStreamUtil.Create(input);
 }