mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-25 04:45:21 +00:00
b755ddefda
make include guards consistent. This was SVN commit r5040.
11 lines
205 B
C++
11 lines
205 B
C++
#ifndef INCLUDED_PMDCONVERT
|
|
#define INCLUDED_PMDCONVERT
|
|
|
|
#include <string>
|
|
|
|
struct OutputCB;
|
|
|
|
void ColladaToPMD(const char* input, OutputCB& output, std::string& xmlErrors);
|
|
|
|
#endif // INCLUDED_PMDCONVERT
|