auth.hpp 253 B

1234567891011
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef AUTH_HPP
  4. #define AUTH_HPP
  5. #include "http.hpp"
  6. bool isAuthorized(const Request &request, bool checkGuildLeader=false);
  7. #endif