raSystem  1.0 bata
raLocation.cpp
Go to the documentation of this file.
1 #include "..\include\raMain.h"
2 using namespace std;
3 
4 namespace System
5 {
7  {
8  }
9 
11  {
12  }
13  bool raLocation::LoadFile(raString locationName)
14  {
15  FILE* fp = fopen(locationName.c_str(), "r");
16  fscanf(fp, "%255s %255s %255s %255s",
17  &modelFileName, &locatorFileName,
18  &skyBoxTextureFileName, &entryLocatorName);
19 
20  fclose(fp);
21 
22  return true;
23  }
24 }
bool LoadFile(raString FileName)
Definition: raLocation.cpp:13
~raLocation(void)
Definition: raLocation.cpp:10
raLocation(void)
Definition: raLocation.cpp:6
std::string raString
Definition: raMain.h:107