historical/toontown-classic.git/panda/include/checkPandaVersion.h
2024-01-16 11:20:27 -06:00

13 lines
335 B
C++

# ifndef CHECKPANDAVERSION_H
# define CHECKPANDAVERSION_H
# include "dtoolbase.h"
extern EXPCL_DTOOL_DTOOLBASE int panda_version_1_11;
// Hack to forcibly depend on the check
template<typename T>
class CheckPandaVersion {
public:
int check_version() { return panda_version_1_11; }
};
template class CheckPandaVersion<void>;
# endif