mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-04-23 21:53:28 +02:00
14 lines
206 B
C++
14 lines
206 B
C++
#ifndef TILE_LOADER_H
|
|
#define TILE_LOADER_H
|
|
|
|
#include "string.h"
|
|
#include "tile.h"
|
|
#include "vector.h"
|
|
|
|
class TileLoader {
|
|
public:
|
|
static Vector<Tile *> load_tile_file(const String &file_name);
|
|
};
|
|
|
|
#endif
|