17 lines
205 B
C
17 lines
205 B
C
#ifndef WORLDS_H
|
|
#define WORLDS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
static const char *world_names[] = {
|
|
"map",
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // WORLDS_H
|