mirror of
https://github.com/zeldaret/tww.git
synced 2024-11-27 07:11:32 +00:00
16 lines
257 B
C++
16 lines
257 B
C++
#ifndef D_WATER_MARK_H
|
|
#define D_WATER_MARK_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class dWaterMark_c {
|
|
public:
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
inline BOOL wm_delete();
|
|
void setMatrix();
|
|
void create();
|
|
};
|
|
|
|
#endif /* D_WATER_MARK_H */
|