2014-02-10 14:00:14 +01:00
|
|
|
//////////////////////////////////
|
|
|
|
// Created by Sam Svensson 2013 //
|
|
|
|
//////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef LOADER_H
|
|
|
|
#define LOADER_H
|
|
|
|
|
2014-02-17 11:50:51 +01:00
|
|
|
#include "Resource\OysterResource.h"
|
2014-02-10 14:00:14 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace GameLogic
|
|
|
|
{
|
|
|
|
namespace LevelFileLoader
|
|
|
|
{
|
|
|
|
class Loader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Loader (){};
|
|
|
|
~Loader(){};
|
|
|
|
char* LoadFile(std::string fileName, int &size);
|
|
|
|
|
|
|
|
//TODO:
|
|
|
|
//Add functionality to load physicsObjects (hitboxes)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif;
|