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