sly1/include/basic.h
2024-07-08 17:21:40 +00:00

26 lines
344 B
C

/**
* @file basic.h
*
* @brief Basic object.
*/
#ifndef BASIC_H
#define BASIC_H
#include "common.h"
#include <splice/sidebag.h>
/**
* @brief Basic object.
*
* Base class for most objects.
*
* @todo Declare virtual methods.
*/
struct BASIC
{
int field_0x0; // placeholder for vtable
CSidebag *psidebag;
};
#endif // BASIC_H