You are on page 1of 1

/*

* File: DotstarService.h
* Author: eamor
*
* Created on November 2, 2020, 10:16 PM
*/

#ifndef DOTSTARSERVICE_H
#define DOTSTARSERVICE_H

// Event Definitions
#include "ES_Configure.h" /* gets us event definitions */
#include "ES_Types.h" /* gets bool type for returns */

// typedefs for the states


// State definitions for use with the query function

typedef enum
{
InitDotStar, Playing, NotPlaying, Won
}DotStarState_t;

//#define MAX_SCORE 750


//#define MAX_COLLISIONS 75

// Public Function Prototypes

bool InitDotStarService(uint8_t Priority);


bool PostDotStarService(ES_Event_t ThisEvent);
ES_Event_t RunDotStarService(ES_Event_t ThisEvent);

#endif /* GAMEPLAY_H */

You might also like