123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #pragma once
- #include <stdbool.h>
- typedef struct GameModeConfig GameModeConfig;
- GameModeConfig *config_create(void);
- void config_init(GameModeConfig *self);
- void config_reload(GameModeConfig *self);
- void config_destroy(GameModeConfig *self);
- bool config_get_client_whitelisted(GameModeConfig *self, const char *client);
- bool config_get_client_blacklisted(GameModeConfig *self, const char *client);
|