mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-28 09:14:58 +01:00
Use correct TD4 checksum for vanilla TD4's. Simplified the code for version detection since checksum numbers do not match up to a version Fix TD4 imports. Oh yeah TD4 doesn't have scenery or entrances Move track related structs to correct files
23 lines
704 B
C++
23 lines
704 B
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2019 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.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../common.h"
|
|
|
|
interface IStream;
|
|
|
|
enum class RCT12TrackDesignVersion : uint8_t;
|
|
|
|
namespace SawyerEncoding
|
|
{
|
|
bool ValidateChecksum(IStream* stream);
|
|
RCT12TrackDesignVersion ValidateTrackChecksum(IStream* stream);
|
|
} // namespace SawyerEncoding
|