1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-31 02:35:46 +01:00

Rename Entity.cpp to EntityBase.cpp

This commit is contained in:
ζeh Matt
2021-11-26 16:49:37 +02:00
parent cb76165448
commit d12d538d84
2 changed files with 2 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
/*****************************************************************************
* Copyright (c) 2014-2021 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "EntityBase.h"
#include "../core/DataSerialiser.h"
void EntityBase::Serialise(DataSerialiser& stream)
{
stream << Type;
stream << sprite_index;
stream << x;
stream << y;
stream << z;
stream << sprite_direction;
}