summaryrefslogtreecommitdiff
path: root/src/elements/nwhl.cpp
blob: cae189aa6ecae78f70f49e410cceca0aca95a6d6 (plain)
1
2
3
4
5
6
#include "simulation/Element.h"

int update_NWHL(UPDATE_FUNC_ARGS) {
	sim->gravmap[(y/CELL)*(XRES/CELL)+(x/CELL)] -= 0.1f;
	return 0;
}