From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/parsec/include/m_list.h | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/parsec/include/m_list.h (limited to 'src/parsec/include/m_list.h') diff --git a/src/parsec/include/m_list.h b/src/parsec/include/m_list.h new file mode 100644 index 0000000..a231a55 --- /dev/null +++ b/src/parsec/include/m_list.h @@ -0,0 +1,46 @@ +/* + * PARSEC HEADER: m_list.h + */ + +#ifndef _M_LIST_H_ +#define _M_LIST_H_ + + +// list window modes + +enum { + + LISTWIN_DEMOLIST, + LISTWIN_PLAYERLIST, + LISTWIN_SERVERLIST +}; + + +// external functions + +int DemoListSelection(); +void DemoListCursorUp(); +void DemoListCursorDown(); +void DemoListMouseSet(); + +int MouseOverListItem( int mousex, int mousey ); + +void MoveInListWindow(); +void MoveOutListWindow(); +void SlideInListWindow(); +void SlideOutListWindow(); +int SlideFinishedListWindow(); + +void DrawRemotePlayerListWindow(); +void DrawMenuListWindow(); + + +// external variables + +extern int listwin_mode; +extern int listwin_active; + + +#endif // _M_LIST_H_ + + -- cgit v1.2.3