HatchitScript
ht_pyengine.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 #include <ht_python.h>
19 #include <ht_scriptengine.h>
20 
21 namespace Hatchit {
22 
23  namespace Script {
24 
25  class HT_API PyEngine : public IScriptEngine
26  {
27  public:
28  PyEngine();
29 
30  ~PyEngine();
31 
32  void VInitialize() override;
33 
34  void VDeInitialize() override;
35  };
36 
37  }
38 
39 }
Definition: ht_pyengine.h:25
Hatchit Engine Copyright(c) 2015 Third-Degree.
Definition: ht_pyengine.h:21
Definition: ht_scriptengine.h:23