1 2 3 4 5 6 7 8 9 10 11
#ifndef FACING_H_ #define FACING_H_ enum facing { FACING_RIGHT, FACING_DOWN, FACING_LEFT, FACING_UP }; #endif // FACING_H_