Danbias/Code/Game/GameLogic/Loader.h

28 lines
438 B
C
Raw Normal View History

//////////////////////////////////
// Created by Sam Svensson 2013 //
//////////////////////////////////
#ifndef LOADER_H
#define LOADER_H
#include "Resource\OysterResource.h"
#include <string>
namespace GameLogic
{
namespace LevelFileLoader
{
class Loader
{
public:
Loader(){};
~Loader(){};
char* LoadFile(std::string fileName);
//TODO:
//Add functionality to load physicsObjects (hitboxes)
};
}
}
#endif;