blob: c560eda9ae101a408e5e0902ea97fd4c42b6ed0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef EX_H
#define EX_H
#include "response.h"
#include "stage.h"
class EX : public Stage
{
public:
using Stage::Stage;
Response advance();
};
#endif /* EX_H_INCLUDED */
|