17 lines
240 B
C
17 lines
240 B
C
|
|
#ifndef ANAGLYM_H
|
|
#define ANAGLYM_H
|
|
|
|
#include <SDL.h>
|
|
|
|
#define FILENAME_SAFE_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-"
|
|
|
|
extern Uint32 g_ticks;
|
|
|
|
static inline Uint32 GetTicks()
|
|
{
|
|
return g_ticks;
|
|
}
|
|
|
|
#endif
|