HatchitScript
ht_script.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 #include <ht_file.h>
19 
20 namespace Hatchit {
21 
22  namespace Script {
23 
24  class HT_API IScript
25  {
26  public:
27  virtual ~IScript() { };
28  };
29 
30  }
31 
32 }
Hatchit Engine Copyright(c) 2015 Third-Degree.
Definition: ht_pyengine.h:21
Definition: ht_script.h:24