My Project
NPLPackageConfig.h
1 #pragma once
2 
3 #include <string>
4 
5 namespace ParaEngine
6 {
9  {
10  public:
12 
13  public:
14  bool IsOpened();
15  void open(const char* filename);
16  void open(const char* pBuffer, int nSize);
17 
18  public:
19  bool IsSearchPath() const;
20  void IsSearchPath(bool val);
21  const std::string& GetMainFile() const;
22  void SetMainFile(const std::string& val);
23 
24  const std::string& GetBootstrapper() const;
25  void SetBootstrapper(const std::string& val);
26 
27  private:
28  bool m_bIsOpened;
29  bool m_bIsSearchPath;
30  std::string m_sMainFile;
31  std::string m_sBootstrapper;
32  };
33 
34 }
different physics engine has different winding order.
Definition: EventBinding.h:32
for parsing package.npl file
Definition: NPLPackageConfig.h:8