Character Animation and Movement controller

CaMove.h

Committer:
rottenegg
Date:
2019-04-17
Revision:
0:8fa72895d335

File content as of revision 0:8fa72895d335:

#ifndef CAMOVE_H
#define CAMOVE_H

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

class N5110;

class CaMove {
    
    public:
    void CMinit();
    void CMmove(N5110 &lcd);
    int get_x();
    int get_y();
    short int get_itr();
    short int get_mvp();
    
    
    private:
    short int mvp;
    int _h;
    int _v;
    short int _itr;
    
};

#endif