ENet.h 246 B

12345678910111213141516
  1. #ifndef ENET_H
  2. #define ENET_H
  3. #include "libs/enet/include/enet.h"
  4. class ENet final {
  5. friend class Client;
  6. friend class Server;
  7. ENet() = delete;
  8. static bool add();
  9. static void remove();
  10. static bool hasError();
  11. };
  12. #endif