diff options
Diffstat (limited to '')
-rw-r--r-- | src/Entities/TNTEntity.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Entities/TNTEntity.h b/src/Entities/TNTEntity.h index 25c74ded5..ef8b8ec3c 100644 --- a/src/Entities/TNTEntity.h +++ b/src/Entities/TNTEntity.h @@ -7,13 +7,16 @@ // tolua_begin -class cTNTEntity : +class cTNTEntity: public cEntity { - typedef cEntity super; -public: // tolua_end + + using Super = cEntity; + +public: // tolua_export + CLASS_PROTODEF(cTNTEntity) cTNTEntity(Vector3d a_Pos, int a_FuseTicks = 80); |