summaryrefslogtreecommitdiff
path: root/room.cpp
blob: 0e905e69792a9bb0accb99a11013e2e7102e4ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// class room implementation.

#ifndef ROOM_CXX
#define ROOM_CXX

#include "room.h"

using namespace std;

room::room( string s_name ) : name( s_name )
{
}

room::~room()
{
}

#endif