summary refs log tree commit diff
path: root/src/gun.h
blob: 6dac3d7b378bbde3d8db0144ac193f8a9ae1b656 (plain)
1
2
3
4
5
6
7
#pragma once

struct gun {
	int (*update)(struct gun *self, struct entity *parent, struct entity *target);
	int timer, counter;
	int x, y; // offset from the parents center
};