18 lines
317 B
C
18 lines
317 B
C
|
#ifndef __DBCVLIB_H
|
||
|
#define __DBCVLIB_H
|
||
|
|
||
|
#ifndef __MGLIB_H
|
||
|
#include "../mg/mglib.h"
|
||
|
#endif
|
||
|
|
||
|
// libreria per i movimenti
|
||
|
class TTimed_skipbox: public TTimed_breakbox
|
||
|
{
|
||
|
public:
|
||
|
TTimed_skipbox(const char * message,int seconds,int x=40,int y=10);
|
||
|
~TTimed_skipbox();
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|