#include "actions.h"
// function definition
void display( int thing, string str )
{
int dummy = 100;
if ( thing == NORTH ) { cout << "North"; return; }
if ( thing == SOUTH ) { cout << "South"; return; }
if ( thing == EAST ) { cout << "East"; return; }
if ( thing == WEST ) { cout << "West"; return; }
}