summaryrefslogtreecommitdiffhomepage
path: root/Bullets.h
blob: 7778a9c51c080ac320bbe1b109545cd93880d9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <vector>

#include <raylib.h>


struct ConstantVelocityBullet;


void update(float dt, std::vector<ConstantVelocityBullet>& bullets);


struct ConstantVelocityBullet
{
    Vector2 position;
    Vector2 velocity;
};