refined detailed info window for stats display removed PSP button for Touch interfaces (currently only iOS and Android) on deck selection screens to not break the core engine and reduce some more complex code, I created a new vector in the JController object. mButtons. This vector will contain all the valid buttons for a given screen. The appropriate Add/Remove methods have been updated to account for this new vector.
31 lines
494 B
C++
31 lines
494 B
C++
#ifndef PRECOMPILEDHEADER_H
|
|
#define PRECOMPILEDHEADER_H
|
|
|
|
#include <algorithm>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <map>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "config.h"
|
|
#include "DebugRoutines.h"
|
|
|
|
#include <assert.h>
|
|
|
|
#include "JGE.h"
|
|
#include "JFileSystem.h"
|
|
#include "JLogger.h"
|
|
|
|
#include "GameOptions.h"
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#if defined (IOS) || defined (ANDROID)
|
|
#define TOUCH_ENABLED
|
|
#endif
|
|
|
|
#endif //PRECOMPILEDHEADER_H
|