mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-19 13:03:11 +01:00
Added callbacks for GameActions and network support for them. Refactored GameAction registration due static library issues. Moved all C functions into a single file.
13 lines
234 B
C++
13 lines
234 B
C++
#include "GameAction.h"
|
|
#include "PlaceParkEntranceAction.hpp"
|
|
#include "SetParkEntranceFeeAction.hpp"
|
|
|
|
namespace GameActions {
|
|
|
|
void Register()
|
|
{
|
|
Register<SetParkEntranceFeeAction>();
|
|
Register<PlaceParkEntranceAction>();
|
|
}
|
|
|
|
} |