aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/sequence.h
blob: a6c59a612692b30d3bfee3f76a090219e4e5f41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __sequence_h__
#define __sequence_h__


const integer now_flip = 177;

const integer seq_length = 10;


#ifdef __sequence_implementation__
#undef EXTERN
#define EXTERN
#endif

EXTERN array<1,seq_length,byte> seq;
#undef EXTERN
#define EXTERN extern


void first_show(byte what);

void then_show(byte what);

void then_flip(byte where,byte ped);

void start_to_close();

void start_to_open();

void call_sequencer();

#endif