aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/drawable.h
blob: 774aa4514273791bded7e2b3f6fe6facbda06344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** ---------------------------------------------------------------------------
 * @file: drawable.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#ifndef YAGE_CORE_DRAWABLE_H
#define YAGE_CORE_DRAWABLE_H

#include "spritebatch.h"

namespace yage
{

class Drawable
{
public:
    virtual void draw(SpriteBatch &sp) = 0;
};

} // namespace yage

#endif