f

Dependencies:   mbed 4DGL-uLCD-SE MMA8452

main.cpp

Committer:
lballard9
Date:
2022-03-10
Revision:
0:8e3b9bb1084a
Child:
1:d57364f0349f

File content as of revision 0:8e3b9bb1084a:

//=================================================================
// The main program file.
//
// Copyright 2022 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.
//==================================================================

// External libs
#include <stdlib.h>

// Project includes
#include "globals.h"
#include "hardware.h"
#include "graphics.h"
#include "keyboard.h"
// ===User implementations start===

void set_random_seed(Timer);

/*
* This function handles the main logic of the game. You should
* initialize the hardware in this function, make calls to 
* functions that update the keyboard and your guess of 
* the word. 
*/
int main()
{
// ===User implementations end===
}

// ===User implementations start===

/*
* This function sets the random seed for the game. 
* It also initializes the keyboard. You may choose to
* put the start screen in here as well. This should be
* called in the main function above.
*/
void set_random_seed(Timer t) {

}
// ===User implementations end===