1
0
forked from 0ad/0ad
0ad/source/ps/ProfileViewer.h
janwas 32cfc6d807 minimap: now use GUI event system instead of polling. fixes broken click feature.
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.
2005-10-20 15:27:39 +00:00

15 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