Exemplo n.º 1
0
        public static GbaTile ReadTile(this BinaryStream stream, int bitDepth)
        {
            var tile = new GbaTile();

            tile.Read(stream, bitDepth);
            return(tile);
        }
Exemplo n.º 2
0
 public static void WriteTile(this BinaryStream stream, GbaTile tile, int bitDepth)
 {
     tile.Write(stream, bitDepth);
 }