20 lines
201 B
C
20 lines
201 B
C
|
|
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
#pragma once
|
|
#include "raylib.h"
|
|
|
|
enum MenuResult {
|
|
MENU_NONE,
|
|
MENU_SELECT_3,
|
|
MENU_SELECT_6,
|
|
MENU_SELECT_9
|
|
};
|
|
|
|
MenuResult DrawMenu();
|
|
|
|
#endif //MENU_H
|
|
|
|
|