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

#include <yage/yage.h>

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

    void draw(yage::SpriteBatch &sp) const;

private:
    glm::vec4 bound_;
};

#endif