Game designed for project

Dependencies:   mbed Gamepad2

MyClasses/Blocks/Blocks.h

Committer:
vaib
Date:
2020-05-24
Revision:
3:5ede4ac61af1

File content as of revision 3:5ede4ac61af1:

#ifndef BLOCKS_H
#define BLOCKS_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"

class Blocks
{
    public:
    
        void init(int length, int height);
        void place_block(int x, int y, string block_type);
        void print_lcd(N5110 &lcd);
        Vector2D get_blockposition(); 
        string get_blocktype();
    
    private:
    
        
    
}
#endif