forked from jaildesigner-jailgames/jaildoctors_dilemma
20 lines
289 B
C++
20 lines
289 B
C++
#include "asset.h"
|
|
|
|
// Constructor
|
|
Asset::Asset(std::string path)
|
|
{
|
|
}
|
|
|
|
// Destructor
|
|
Asset::~Asset()
|
|
{
|
|
}
|
|
|
|
// Añade un elemento a la lista
|
|
void Asset::add(std::string file, enum assetType type)
|
|
{
|
|
item_t temp;
|
|
temp.file = file;
|
|
temp.type = type;
|
|
mFileList.push_back(temp);
|
|
} |