mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-05-09 15:21:35 +02:00
9 lines
210 B
C++
9 lines
210 B
C++
#ifndef RBAC_DEFAULT_PERMISSIONS_H
|
|
#define RBAC_DEFAULT_PERMISSIONS_H
|
|
|
|
enum RBACDefaultRankPermissions {
|
|
RBAC_RANK_PERMISSION_ADMIN_PANEL = 1 << 0,
|
|
RBAC_RANK_PERMISSION_USE_REDIRECT = 1 << 1,
|
|
};
|
|
|
|
#endif |