OpenTTD Source 20241224-master-gf74b0cf984
init.h
Go to the documentation of this file.
1
3#ifndef INIT_H
4#define INIT_H
5
6#include "linkgraphjob_base.h"
7
13public:
14
19 void Run(LinkGraphJob &job) const override { job.Init(); }
20};
21
22#endif /* INIT_H */
A handler doing "something" on a link graph component.
Stateless, thread safe initialization handler.
Definition init.h:12
void Run(LinkGraphJob &job) const override
Initialize the link graph job.
Definition init.h:19
Class for calculation jobs to be run on link graphs.
void Init()
Initialize the link graph job: Resize nodes and edges and populate them.
Some typedefs for component handlers.