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