git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-support/png2asset/mttile.h

      1 #pragma once
      2 struct MTTile
      3 {
      4     char offset_x;
      5     char offset_y;
      6     unsigned char offset_idx;
      7     unsigned char props;
      8 
      9     MTTile(char offset_x, char offset_y, unsigned char offset_idx, unsigned char props) : offset_x(offset_x), offset_y(offset_y), offset_idx(offset_idx), props(props) {}
     10     MTTile() : offset_x(0), offset_y(0), offset_idx(0), props(0) {}
     11 };
     12 

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.