14 lines
263 B
C++
14 lines
263 B
C++
|
|
#ifndef ANAGLYM_H
|
|
#define ANAGLYM_H
|
|
|
|
#include <string>
|
|
#include "Video.h"
|
|
|
|
#define FILENAME_SAFE_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-"
|
|
|
|
std::string locateResource(const std::string & shortname);
|
|
extern Video * g_video;
|
|
|
|
#endif
|