// // Programmer: Leland Stanford // Creation Date: 29 February 1999 // Last Modified: 29 February 1999 // Filename: ...improv/doc/env/batonImprov/batonTemplate.cpp // Syntax: C++; Visual C++ 6.0; batonImprov // // Description: Fill in the following functions to create an improv program. // #include "batonImprov.h" /*----------------- beginning of improvization algorithms ---------------*/ /*--------------------- maintenance algorithms --------------------------*/ void description(void) { cout << "Write the program description here" << endl; } void initialization(void) { } void finishup(void) { } /*-------------------- main loop algorithms -----------------------------*/ void mainloopalgorithms(void) { } /*-------------------- triggered algorithms -----------------------------*/ void stick1trig(void) { } void stick2trig(void) { } void b14plustrig(void) { } void b15plustrig(void) { } void b14minusuptrig(void) { } void b14minusdowntrig(void) { } void b15minusuptrig(void) { } void b15minusdowntrig(void) { } void keyboardchar(int key) { } /*------------------ end improvization algorithms -----------------------*/