diff options
Diffstat (limited to 'source/cSignEntity.cpp')
-rw-r--r-- | source/cSignEntity.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/cSignEntity.cpp b/source/cSignEntity.cpp index ca21d847b..92db18d91 100644 --- a/source/cSignEntity.cpp +++ b/source/cSignEntity.cpp @@ -25,6 +25,15 @@ cSignEntity::cSignEntity(ENUM_BLOCK_ID a_BlockType, int a_X, int a_Y, int a_Z, c +cSignEntity::cSignEntity(ENUM_BLOCK_ID a_BlockType, int a_X, int a_Y, int a_Z)
+ : cBlockEntity(a_BlockType, a_X, a_Y, a_Z)
+{
+}
+
+
+
+
+
cSignEntity::~cSignEntity()
{
}
|