sly1/include/so.h
2024-07-04 20:25:59 +00:00

22 lines
211 B
C

/**
* @file so.h
*
* @brief Scene objects.
*/
#ifndef SO_H
#define SO_H
#include <alo.h>
/**
* @brief Scene object.
*
* @todo Implement struct.
*/
struct SO : public ALO
{
// ...
};
#endif // SO_H