mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
25 lines
274 B
C
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
|