Add ghosts

This commit is contained in:
2023-10-13 01:16:31 -04:00
parent b6b83e9328
commit e4ff110d85

View File

@@ -327,7 +327,7 @@ int main(int argc, char *argv[])
float smallcutoff = glm::cos(glm::radians(7.5f));
std::vector<Ghost *> ghosts;
for (int i = 0; i < 4000; i++) {
for (int i = 0; i < 1000; i++) {
ghosts.push_back(new Ghost(xmin_wall, xmax_wall, zmin_wall, zmax_wall));
}