Lobster controller program

Dependencies:   FatFileSystem HBridge MSCFileSystem WavPlayer mbed

Fork of RSALB_hbridge_helloworld by Giles Barton-Owen

ActionCue/Action.h

Committer:
p07gbar
Date:
2012-09-21
Revision:
2:f8199cc69b20

File content as of revision 2:f8199cc69b20:

#ifndef ACTION_H
#define ACTION_H

class Action
{
    public:
        Action()
        {
            actionTime = 0;
            actionType = -1;
            actionInt = 0;
            actionFloat = 0;
        }
       
       Action(float time, int type, int aint, float afloat)
       {
            actionTime  = time;
            actionType  = type;
            actionInt   = aint;
            actionFloat = afloat;
       }
        
        float   actionTime;
        int     actionType;
        int     actionInt;
        float   actionFloat;
};


#endif