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

ReadCode3() public méthode

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