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