16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 22:09:19 +02:00

Usunięcie pozostałych jeszcze słów kluczowych __fastcall.

This commit is contained in:
firleju
2016-04-06 06:58:29 +02:00
parent 52cf14d83a
commit 25bdd9d536
32 changed files with 147 additions and 147 deletions

View File

@@ -25,7 +25,7 @@ class TMdlContainer
SafeDeleteArray(Name);
SafeDelete(Model);
};
TModel3d *__fastcall LoadModel(char *newName, bool dynamic);
TModel3d * LoadModel(char *newName, bool dynamic);
TModel3d *Model;
char *Name;
};
@@ -35,7 +35,7 @@ class TModelsManager
private:
static TMdlContainer *Models;
static int Count;
static TModel3d *__fastcall LoadModel(char *Name, bool dynamic);
static TModel3d * LoadModel(char *Name, bool dynamic);
public:
// TModelsManager();
@@ -43,7 +43,7 @@ class TModelsManager
static void Init();
static void Free();
// McZapkie: dodalem sciezke, notabene Path!=Patch :)
static TModel3d *__fastcall GetModel(const char *Name, bool dynamic = false);
static TModel3d * GetModel(const char *Name, bool dynamic = false);
};
//---------------------------------------------------------------------------
#endif