home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game.EXE 2002 May
/
Game.EXE_05_2002.iso
/
Alawar
/
src
/
Cell.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2002-04-01
|
174 b
|
13 lines
#ifndef CELL_H
#define CELL_H
class Creature;
class Cell
{
public:
virtual ~Cell()
{}
virtual bool can_pass(const Creature * cre)const=0;
};
#endif //CELL_H