Alexandria.Engines.UltimaUnderworld.Graphic.RLELoader.ReadCode2 C# (CSharp) Méthode

ReadCode2() public méthode

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
Résultat int
            public int ReadCode2()
            {
                return (ReadCode() << 4) + ReadCode();
            }