sly1/include/po.h
2024-07-07 20:53:08 +00:00

23 lines
223 B
C

/**
* @file po.h
*
* @brief Player object(?).
*/
#ifndef PO_H
#define PO_H
#include "common.h"
#include <so.h>
/**
* @brief TBD
*
* @todo Implement struct.
*/
struct PO : public SO
{
// ...
};
#endif // PO_H