mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00

Fixed TR1 compilance. Input configuration support for Win32. Support for analog axis in PadMan. git-svn-id: http://svn.purei.org/purei/trunk@361 b36208d7-6611-0410-8bec-b1987f11c4a2
19 lines
395 B
C++
19 lines
395 B
C++
#ifndef _APPCONFIG_H_
|
|
#define _APPCONFIG_H_
|
|
|
|
#include "Config.h"
|
|
#include "Singleton.h"
|
|
|
|
class CAppConfig : public Framework::CConfig, public CSingleton<CAppConfig>
|
|
{
|
|
public:
|
|
friend CSingleton<CAppConfig>;
|
|
|
|
private:
|
|
CAppConfig();
|
|
virtual ~CAppConfig();
|
|
|
|
static CConfig::PathType BuildConfigPath();
|
|
};
|
|
|
|
#endif
|