16 lines
235 B
C++
16 lines
235 B
C++
#ifndef NONUT_CORE_USER_DATA_H
|
|
#define NONUT_CORE_USER_DATA_H
|
|
|
|
#include <sqapi.h>
|
|
|
|
namespace nonut
|
|
{
|
|
class UserData
|
|
{
|
|
public:
|
|
SQUserPointer userPtr = nullptr;
|
|
SQUserPointer tagPtr = nullptr;
|
|
};
|
|
}
|
|
#endif //NONUT_CORE_INSTANCE_H
|