10 lines
192 B
C++
10 lines
192 B
C++
|
#include "menuitems.h"
|
||
|
|
||
|
MISendSDLEvent::MISendSDLEvent(std::string str, SDL_Event event) : MenuItem(str) {
|
||
|
sendevent = event;
|
||
|
}
|
||
|
|
||
|
void MISendSDLEvent::select() {
|
||
|
SDL_PushEvent(&sendevent);
|
||
|
}
|