finished p2-2

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

player_private.h

Committer:
DCchico
Date:
2021-03-29
Revision:
0:95264f964374

File content as of revision 0:95264f964374:

//=================================================================
// The header file is for module "player"
//
// Copyright 2020 Georgia Tech.  All rights reserved.
// The materials provided by the instructor in this course are for
// the use of the students currently enrolled in the course.
// Copyrighted course materials may not be further disseminated.
// This file must not be made publicly available anywhere.
//==================================================================

#ifndef PLAYER_PRIVATE_H
#define PLAYER_PRIVATE_H

#include "mbed.h"
#include "globals.h"
#include "graphics.h"
#include "player_public.h"
#include "compost_pile_public.h"

//==== [private settings] ====
#define PLAYER_INIT_Y 0
#define PLAYER_HEIGHT 10
#define KNIFE_LENGTH 6
#define PLAYER_COLOR 0x0000FF //blue
#define PLAYER_KNIFE_SPEED 6
#define PLAYER_KNIFE_COLOR 0x0000FF //blue


//==== [private type] ====


//==== [private function] ====


#endif //PLAYER_PRIVATE_H