home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Commands
/
Protocols
/
Boasting.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
235 b
|
18 lines
|
[
TEXT/CWIE
]
// Boasting.h
#ifndef Boasting_h
#define Boasting_h
#ifndef ContextUser_h
#include "ContextUser.h"
#endif
class Boasting: public ContextUser
{
public:
virtual bool CanBoast() const = 0;
virtual void Boast() = 0;
};
#endif