mirror of
https://github.com/SMGCommunity/Petari.git
synced 2024-12-03 11:11:13 +00:00
15 lines
231 B
C++
15 lines
231 B
C++
#ifndef ASSIGNABLEARRAY_H
|
|
#define ASSIGNABLEARRAY_H
|
|
|
|
namespace MR
|
|
{
|
|
template<typename T>
|
|
class AssignableArray
|
|
{
|
|
public:
|
|
void* mContent; // _0
|
|
s32 mCount; // _4
|
|
};
|
|
};
|
|
|
|
#endif // ASSIGNABLEARRAY_H
|