mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-02 14:04:14 +01:00
9 lines
135 B
C
9 lines
135 B
C
|
#pragma once
|
||
|
|
||
|
#include "Dummy.h"
|
||
|
|
||
|
class CDummyObject : CDummy
|
||
|
{
|
||
|
};
|
||
|
static_assert(sizeof(CDummyObject) == 0x68, "CDummyObject: error");
|