mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
18 lines
302 B
C++
18 lines
302 B
C++
#ifndef D_LAST_H
|
|
#define D_LAST_H
|
|
|
|
#include "d/d_base.h"
|
|
|
|
class dLast_c : public dBase_c {
|
|
public:
|
|
typedef void (*executeCallback)(void);
|
|
|
|
static void setExecuteCallback(executeCallback cb) {
|
|
sExecuteCallback = cb;
|
|
}
|
|
private:
|
|
static executeCallback sExecuteCallback;
|
|
};
|
|
|
|
#endif
|