
/*
 *  EP_myCode.h
 *  EverydayPixels
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <GLUT/glut.h>


/* ========================== base code ========================== */

void    ep_draw_image() { };
void    ep_set_image( unsigned char* IM, int imWidth, int imHeight, int imDepth ) { };

void    myInit();

void    myKey( unsigned char key, int x, int y );
//void    myMouseDown( int button, int state, int x, int y ) { };
void    myMouseDrag( int x, int y ) { };
void    myMouseMove( int x, int y ) { };
void	myMouseFunc(int button, int state, int x, int y);

