aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/spritesheet.h
blob: 2b70ad8bcd0534f7f435e507b61aacf10dd5d3cc (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
/* ----------------------------------------------------------------------------
 * spritesheet.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#ifndef YAGE_SPRITESHEET_H
#define YAGE_SPRITESHEET_H

#include "texture.h"

namespace yage
{

class SpriteSheet
{
private:
    Texture texture_;    
};

} // namespace yage

#endif