musicUI.h
379 Bytes
#ifndef __MusicUI__
#define __MusicUI__
#include "UIevent.h"
#include "UIpane.h"
enum
{
kXptPaneID,
kPerfPaneID,
kChlPaneID,
kSndPlayID,
kNumPanes
};
typedef struct
{
UIPane * fMovePane;
Point fMoveOrigin;
} UIGlobals;
void UIInit (void);
void UIDraw (Gfx **ppGfx);
void UIProcessEvent (UIEvent *pEvent);
#endif /* __MusicUI__ */