コード例 #1
0
        public static GbaTile ReadTile(this BinaryStream stream, int bitDepth)
        {
            var tile = new GbaTile();

            tile.Read(stream, bitDepth);
            return(tile);
        }
コード例 #2
0
 public static void WriteTile(this BinaryStream stream, GbaTile tile, int bitDepth)
 {
     tile.Write(stream, bitDepth);
 }