aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/bullet.h
blob: 37ea52cab92d84c77de068a9f396cd9d144f7a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef EXAMPLES_SHOOTER_BULLET_H
#define EXAMPLES_SHOOTER_BULLET_H

#include <yage/yage.h>

class Bullet {
public:
    Bullet(const glm::vec4 &bound);

    void draw(yage::SpriteBatch &sp) const;
private:
    glm::vec4 bound_;
};

#endif