mirror of
https://github.com/r4sas/ExtraMirror
synced 2025-01-09 22:38:10 +00:00
14 lines
140 B
C++
14 lines
140 B
C++
#ifndef CVAR_H
|
|
#define CVAR_H
|
|
|
|
class CVARlist
|
|
{
|
|
public:
|
|
void init();
|
|
public:
|
|
int cvar_test;
|
|
};
|
|
|
|
extern CVARlist cvar;
|
|
|
|
#endif |