10 lines
201 B
C
10 lines
201 B
C
|
|
#pragma once
|
||
|
|
#include "Common.h"
|
||
|
|
class GameEngine; // forward declare
|
||
|
|
|
||
|
|
class IndexSprite {
|
||
|
|
public:
|
||
|
|
int texture_index, sprite_index, x, y;
|
||
|
|
static GameEngine* game;
|
||
|
|
sf::Sprite drawable();
|
||
|
|
};
|