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

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

Read a three-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 ReadCode3 ( ) : int
Результат int
            public int ReadCode3()
            {
                return (((ReadCode() << 4) + ReadCode()) << 4) + ReadCode();
            }