test avoid bulled game

Dependencies:   C12832_lcd LCD_fonts mbed mbed-rtos

integrate_graphics.h

Committer:
pypy_o8o
Date:
2016-12-09
Revision:
14:5da230069776

File content as of revision 14:5da230069776:

#ifndef integrate_H
#define integrate_H
#include "C12832_lcd.h"
#include "models.h"


class GraphicBuilder
{
private:
    point pe;
    point bu;
    point st[];
    Bitmap bitmap_all;
   // char map[];
public:
    Bitmap integrateBitmap(point pe, point bu, point st[]);
    void init();
   // char map[];
};

static char map[] = {
    };

Bitmap bitmap_all = {
    LCD_X,
    LCD_Y,
    LCD_X/8,
    map,
};

#endif