#include <iostream>
#include <string>
#include "animation.h"
using namespace std;
// Program demonstrates simple animation
// and communication between objects.
int main()
{
Playland land( "____|______|____|_____" );
Creature cret( 'O', land );
cret.move( 15 );
cret.move( -6 );
Monster monst( land );
monst.move( 12 );
cret.move( +10 );
cout << '\n';
return 0;
}