quickfix in Block.h

This commit is contained in:
A-lex-Ra 2023-12-17 22:14:01 +06:00
parent 88280f8002
commit a845d8fed5

View File

@ -29,7 +29,7 @@ struct CoordSystem {
void transform(AABB& aabb);
static bool CoordSystem::isVectorHasNegatives(glm::ivec3 vec) {
static bool isVectorHasNegatives(glm::ivec3 vec) {
if (vec.x < 0 || vec.y < 0 || vec.z < 0) {
return true;
}