mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
25 lines
563 B
C
25 lines
563 B
C
//============================================================================
|
|
//----------------------------------------------------------------------------
|
|
// Marquee.h
|
|
//----------------------------------------------------------------------------
|
|
//============================================================================
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "PLQuickdraw.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
Pattern pats[kNumMarqueePats];
|
|
Rect bounds, handle;
|
|
short index, direction, dist;
|
|
Boolean active, paused, handled;
|
|
} marquee;
|
|
|
|
|
|
extern marquee theMarquee;
|
|
|