2023-10-15 08:07:33 +00:00
|
|
|
#include <utility/location.h>
|
2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2023-10-17 11:25:02 +00:00
|
|
|
tc_chunk_location_s tc_zero_chunk_location()
|
2023-10-14 13:04:52 +00:00
|
|
|
{
|
2023-10-17 11:25:02 +00:00
|
|
|
tc_chunk_location_s location;
|
|
|
|
location.world = NULL;
|
|
|
|
location.grid_coords.x = 0;
|
|
|
|
location.grid_coords.y = 0;
|
|
|
|
location.grid_coords.z = 0;
|
2023-10-14 13:04:52 +00:00
|
|
|
|
|
|
|
return location;
|
|
|
|
}
|
|
|
|
|