Alexandria.Engines.UltimaUnderworld.Graphic.RLELoader.ReadCode2 C# (CSharp) Метод

ReadCode2() публичный Метод

Read a two-piece code.
There is an apparent error in the code by using a shift of 4 instead of CodeSize; this is an error in the data.
public ReadCode2 ( ) : int
Результат int
            public int ReadCode2()
            {
                return (ReadCode() << 4) + ReadCode();
            }