23 lines
218 B
C++
23 lines
218 B
C++
#ifndef LIME_UI_DISPLAY_H
|
|
#define LIME_UI_DISPLAY_H
|
|
|
|
#include <SDL.h>
|
|
#include <ui/Gamepad.h>
|
|
#include <map>
|
|
|
|
namespace lime {
|
|
|
|
|
|
class Display {
|
|
|
|
public:
|
|
|
|
static int GetNumDevices ();
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |