mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 13:49:54 +00:00
21 lines
202 B
C
21 lines
202 B
C
/**
|
|
* @file step.h
|
|
*/
|
|
#ifndef STEP_H
|
|
#define STEP_H
|
|
|
|
#include "common.h"
|
|
#include <po.h>
|
|
|
|
/**
|
|
* @brief TBD
|
|
*
|
|
* @todo Implement struct.
|
|
*/
|
|
struct STEP : public PO
|
|
{
|
|
// ...
|
|
};
|
|
|
|
#endif // STEP_H
|