home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
Libraries
/
Aidan's Class Libraries
/
Source
/
Headers
/
CLBackgrounder.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-05-25
|
301 b
|
22 lines
|
[
TEXT/CWIE
]
//Copyright (c) 1997 Aidan Cully
//All rights reserved
#ifndef __BACKGROUNDER_H
#define __BACKGROUNDER_H
#include "CLEvent.h"
class TBackgroundEvent:
public TEvent
{
public:
bool background;
};
class MBackgrounder
{
public:
virtual void HandleBackground( const TBackgroundEvent* )=0;
};
#endif