forked from jaildesigner-jailgames/jaildoctors_dilemma
Primera implementación de la clase asset
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include "ifdefs.h"
|
||||
#include "asset.h"
|
||||
#include <string>
|
||||
|
||||
#ifndef LANG_H
|
||||
@@ -18,12 +19,12 @@
|
||||
class Lang
|
||||
{
|
||||
private:
|
||||
std::string *mFileList; // Lista de ficheros con los recursos
|
||||
Asset *mAsset;
|
||||
std::string mTextStrings[MAX_TEXT_STRINGS];
|
||||
|
||||
public:
|
||||
// Constructor
|
||||
Lang(std::string *fileList);
|
||||
Lang(Asset *asset);
|
||||
|
||||
// Destructor
|
||||
~Lang();
|
||||
|
||||
Reference in New Issue
Block a user