Project

General

Profile

Statistics
| Revision:

root / branches / lemmings / code / behaviors / smart_run_around_fsm / driver.c @ 204

History | View | Annotate | Download (193 Bytes)

1
/** driver for lemmings code
2
        continually execute lemmings behavior
3
*/
4

    
5
#include "lemmings.h"
6

    
7

    
8
int main(void)
9
{
10
  lemmings_init();
11
  while(1)
12
    lemmings_FSM();
13

    
14
  return 0;
15
}