13 lines
94 B
C
13 lines
94 B
C
|
#ifndef CFG_H
|
||
|
#define CFG_H
|
||
|
|
||
|
void init();
|
||
|
|
||
|
class Cfg
|
||
|
{
|
||
|
public:
|
||
|
Cfg();
|
||
|
};
|
||
|
|
||
|
#endif // CFG_H
|