mirror of
https://github.com/Relintai/voxelman.git
synced 2025-04-25 21:25:00 +02:00
Fix standalone compilation. Closes #2
This commit is contained in:
parent
547aeaad4d
commit
d9c523de59
@ -435,6 +435,11 @@ void VoxelJob::set_stage(const int value) {
|
|||||||
_stage = value;
|
_stage = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VoxelJob::reset_stages() {
|
||||||
|
_current_run_stage = 0;
|
||||||
|
_stage = 0;
|
||||||
|
}
|
||||||
|
|
||||||
float VoxelJob::get_current_execution_time() {
|
float VoxelJob::get_current_execution_time() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -129,6 +129,8 @@ public:
|
|||||||
int get_stage() const;
|
int get_stage() const;
|
||||||
void set_stage(const int value);
|
void set_stage(const int value);
|
||||||
|
|
||||||
|
void reset_stages();
|
||||||
|
|
||||||
float get_current_execution_time();
|
float get_current_execution_time();
|
||||||
|
|
||||||
bool should_do(const bool just_check = false);
|
bool should_do(const bool just_check = false);
|
||||||
|
Loading…
Reference in New Issue
Block a user