goat3dgfx

annotate src/datapath.h @ 15:7d6b667821cf

wrapped everything in the goatgfx namespace
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 30 Nov 2013 20:52:21 +0200
parents 1873dfd13f2d
children
rev   line source
nuclear@0 1 #ifndef DATAPATH_H_
nuclear@0 2 #define DATAPATH_H_
nuclear@0 3
nuclear@0 4 #include <string>
nuclear@0 5
nuclear@15 6 namespace goatgfx {
nuclear@15 7
nuclear@0 8 void add_data_path(const char *path);
nuclear@0 9
nuclear@0 10 std::string datafile_path(const char *fname);
nuclear@0 11
nuclear@15 12 } // namespace goatgfx
nuclear@15 13
nuclear@0 14 #endif // DATAPATH_H_