mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
textureentry: add performance note list, text: fix mousewheel direction input: was going to add a deque to allow registering handlers in back and front. obviated by minimap fix, though. cleaned up a bit and renamed stuff (again, sigh). loaderthunks: fixed weird alignment/padding warning This was SVN commit r2979.
14 lines
285 B
C
14 lines
285 B
C
// ProfileViewer.h
|
|
//
|
|
// A temporary interface for viewing profile information
|
|
|
|
#ifndef PROFILE_VIEWER_INCLUDED
|
|
#define PROFILE_VIEWER_INCLUDED
|
|
|
|
#include "input.h"
|
|
|
|
void ResetProfileViewer();
|
|
void RenderProfile();
|
|
InReaction profilehandler( const SDL_Event* ev );
|
|
|
|
#endif
|