2014-01-24 10:22:18 +01:00
|
|
|
//////////////////////////////////
|
|
|
|
// Created by Sam Svensson 2013 //
|
|
|
|
//////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef LOADER_H
|
|
|
|
#define LOADER_H
|
|
|
|
|
2014-01-28 11:29:35 +01:00
|
|
|
#include "..\Misc\Resource\OysterResource.h"
|
2014-01-24 10:22:18 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace GameLogic
|
|
|
|
{
|
2014-01-24 10:42:19 +01:00
|
|
|
namespace LevelFileLoader
|
2014-01-24 10:22:18 +01:00
|
|
|
{
|
|
|
|
class Loader
|
|
|
|
{
|
|
|
|
public:
|
2014-01-27 10:15:39 +01:00
|
|
|
Loader (){};
|
2014-01-24 10:22:18 +01:00
|
|
|
~Loader(){};
|
2014-01-28 16:15:10 +01:00
|
|
|
char* LoadFile(std::string fileName, int &size);
|
2014-01-24 10:22:18 +01:00
|
|
|
|
|
|
|
//TODO:
|
|
|
|
//Add functionality to load physicsObjects (hitboxes)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif;
|