#ifndef COMMON_H
#define COMMON_H
enum PlayerDirection
{
kLeft = 1,
kUp = 2,
kDown = 3,
kRight = 4
};
#endif