update firmware.bin
[clinton/Smoothieware.git] / src / libs / Hook.h
1 #ifndef HOOK_H
2 #define HOOK_H
3 #include "libs/FPointer.h"
4
5 // Hook is just a glorified FPointer
6
7 class Hook : public FPointer {
8 public:
9 Hook();
10 int interval;
11 int countdown;
12 };
13
14 #endif