sly1/include/jt.h
2024-07-07 19:33:15 +00:00

25 lines
274 B
C

/**
* @file jt.h
*
* @brief Sly entity.
*/
#ifndef JT_H
#define JT_H
#include "common.h"
#include <step.h>
/**
* @brief Sly entity.
*
* JT = "jewel thief" = codename for Sly.
*
* @todo Implement struct.
*/
struct JT : public STEP
{
// ...
};
#endif // JT_H