Status.h 207 B

1234567891011121314
  1. #ifndef INCLUDE_STATUS_H
  2. #define INCLUDE_STATUS_H
  3. namespace WalrusRPG
  4. {
  5. namespace Status
  6. {
  7. void init();
  8. void update();
  9. bool mustQuit();
  10. void deinit();
  11. }
  12. }
  13. #endif