1 /*****************************************************************************
2  * Copyright (c) 2014-2018 OpenRCT2 developers
3  *
4  * For a complete list of all authors, please refer to contributors.md
5  * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
6  *
7  * OpenRCT2 is licensed under the GNU General Public License version 3.
8  *****************************************************************************/
9 
10 #pragma once
11 
12 #include "FunctionCall.hpp"
13 
14 #include <openrct2/common.h>
15 
16 namespace PaintIntercept
17 {
18     void InitHooks();
19 
20     void ClearCalls();
21     int GetCalls(function_call* buffer);
22 
23     void SetSimulateWoodenSupports(bool enabled);
24 }; // namespace PaintIntercept
25