mirror of
https://github.com/extremscorner/not64.git
synced 2025-04-02 10:52:37 -04:00
13 lines
272 B
C
13 lines
272 B
C
/* menuFileBrowser.h - File browser using the menu system
|
|
by Mike Slegeir for Mupen64-GC
|
|
*/
|
|
|
|
#ifndef MENU_FILE_BROWSER_H
|
|
#define MENU_FILE_BROWSER_H
|
|
|
|
#include "menu.h"
|
|
#include "../fileBrowser/fileBrowser.h"
|
|
|
|
menu_item* menuFileBrowser(fileBrowser_file* dir);
|
|
|
|
#endif
|