mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-02 22:35:55 +01:00
25 lines
339 B
C++
25 lines
339 B
C++
#ifndef TERRAIN_LIGHT_JOB_H
|
|
#define TERRAIN_LIGHT_JOB_H
|
|
|
|
|
|
#include "terrain_job.h"
|
|
|
|
class TerrainMesher;
|
|
|
|
class TerrainLightJob : public TerrainJob {
|
|
GDCLASS(TerrainLightJob, TerrainJob);
|
|
|
|
public:
|
|
void phase_light();
|
|
|
|
void _execute_phase();
|
|
|
|
TerrainLightJob();
|
|
~TerrainLightJob();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|