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