diff options
| author | chai <chaifix@163.com> | 2019-03-17 11:57:08 +0800 | 
|---|---|---|
| committer | chai <chaifix@163.com> | 2019-03-17 11:57:08 +0800 | 
| commit | af78bbf9f1ea499be92611aa4a63664d79d13b25 (patch) | |
| tree | 677a7596a9d9af85f0f01ea0647fb6b49ab9fa0d /Source/Samples/LuaxTest/main.cpp | |
| parent | b2dbd84b019648d59df5046f154a30c10b6d7eca (diff) | |
*luax
Diffstat (limited to 'Source/Samples/LuaxTest/main.cpp')
| -rw-r--r-- | Source/Samples/LuaxTest/main.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Source/Samples/LuaxTest/main.cpp b/Source/Samples/LuaxTest/main.cpp index 65cdaa1..f87226e 100644 --- a/Source/Samples/LuaxTest/main.cpp +++ b/Source/Samples/LuaxTest/main.cpp @@ -18,7 +18,7 @@ using namespace Luax;  class School   	: public Singleton<School> -	, public LuaxClass<School> +	, public LuaxNativeClass<School>  {  public: @@ -65,7 +65,7 @@ void School::RegisterLuaxPostprocess(Luax::LuaxState&)  //---------------------------------------------------------------------------------------------------------------- -class Boy : public LuaxClass<Boy> +class Boy : public LuaxNativeClass<Boy>  {  public: @@ -197,7 +197,7 @@ void Boy::RegisterLuaxPostprocess(LuaxState& state)  //---------------------------------------------------------------------------------------------------------------- -class Girl : public LuaxClass<Girl> +class Girl : public LuaxNativeClass<Girl>  {  }; | 
