mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
16 lines
232 B
C++
16 lines
232 B
C++
#ifndef D_WPILLAR_H
|
|
#define D_WPILLAR_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class dWpillar_c {
|
|
public:
|
|
void jointCallBack(int);
|
|
void draw();
|
|
void execute();
|
|
void wp_delete();
|
|
void create();
|
|
};
|
|
|
|
#endif /* D_WPILLAR_H */
|