I am writing an include with stocks/defines/constants in order to not have to write them in every plugin, but i ran into some trouble, so could anyone please tell me
What is the proper way to integrate these constants from a plugin into an include ?
I know for the one dimensional constant i can use #define to not get warnings, but for the other two ?
PHP Code:
const constant1[][] = { "blabla", "blabla", "blabla" }
const constant2[] = { 1, 2, 3, 4, 5, 6 }
const constant3 = (1<<CSW_KNIFE) | (1<<CSW_C4) | (1<<CSW_USP)
__________________