You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
200 B

  1. #ifndef __BETACORE_COMMON_HPP__
  2. #define __BETACORE_COMMON_HPP__
  3. namespace betacore
  4. {
  5. enum SHAPE{
  6. NONE,
  7. TRIANGLE,
  8. CIRCLE,
  9. SQUARE,
  10. PENTAGON,
  11. UNKOWN
  12. };
  13. enum MODE
  14. {
  15. ALICE,
  16. BOB,
  17. EVE
  18. };
  19. }
  20. #endif