mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-04 18:09:37 +01: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 |