You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
362 B
24 lines
362 B
#pragma once |
|
|
|
#include "all.h" |
|
|
|
namespace dvl { |
|
|
|
enum MenuAction { |
|
MenuAction_NONE = 0, |
|
MenuAction_SELECT, |
|
MenuAction_BACK, |
|
MenuAction_DELETE, |
|
|
|
MenuAction_UP, |
|
MenuAction_DOWN, |
|
MenuAction_LEFT, |
|
MenuAction_RIGHT, |
|
|
|
MenuAction_PAGE_UP, |
|
MenuAction_PAGE_DOWN, |
|
}; |
|
|
|
MenuAction GetMenuAction(const SDL_Event &event); |
|
|
|
} // namespace dvl
|
|
|