File: tile2c.cpp

package info (click to toggle)
powder 106-1
  • links: PTS
  • area: non-free
  • in suites: lenny
  • size: 5,864 kB
  • ctags: 2,972
  • sloc: cpp: 49,543; makefile: 523; objc: 245; sh: 169; ansic: 107; csh: 49
file content (18 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// tile2c.cpp : Defines the entry point for the console application.
//

#include "bmp.h"

#include <stdio.h>


int 
main(int argc, char *argv[])
{
    // Ideally this would be generalized into a gfx2gba style program
    // with more options.  But I just want to get it working now.
    bmp_convertTileset();
    
    return 0;
}