mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 22:09:19 +02:00
replaced char parameters in sound system with stl string
This commit is contained in:
@@ -14,16 +14,12 @@ http://mozilla.org/MPL/2.0/.
|
||||
class TMdlContainer
|
||||
{
|
||||
friend class TModelsManager;
|
||||
TMdlContainer()
|
||||
{
|
||||
Model = NULL;
|
||||
};
|
||||
~TMdlContainer()
|
||||
{
|
||||
SafeDelete(Model);
|
||||
delete Model;
|
||||
};
|
||||
TModel3d * LoadModel(std::string const &NewName, bool dynamic);
|
||||
TModel3d *Model;
|
||||
TModel3d *Model{ nullptr };
|
||||
std::string Name;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user