[crawl]7drl

This blog documents my 7-day roguelike project for rec.games.roguelike.development. My project is a small variant for the roguelike computer game Linley's Dungeoncrawl.

Name:
Location: Palmer, Alaska, United States

Friday, December 15, 2006

Franco Head

#ifndef FRANCO
#define FRANCO
//
// Franco is a reporter. He likes to conduct interviews outside
// the dungeon. He reports to Kervin and to the user. He only cares
// about monsters. He would like to care about more though.
//
#include
#include
typedef std::string topic;
typedef std::string description;
typedef std::vector notepad;

// Franco talks to Kervin
#include "Kervin.h"

class Franco {
private:
notepad n;
topic t;
public:
Franco();
//get the word from the cave
bool askKervinabout( topic );
//describe a monster from input
bool record( topic, description );
};
#endif

0 Comments:

Post a Comment

<< Home