view LuaVM.h @ 2456:83174b7b3763

removed VideoPlayer.cpp/h and CShow.cpp/.h for MVS 2012
author Ritor1
date Sat, 26 Jul 2014 08:39:35 +0600
parents 62a27b2cfcc2
children
line wrap: on
line source

#pragma once

class LuaVM
{
  public:
    inline LuaVM(): L(nullptr) {}

    void Initialize();
    bool DoFile(const char *filename);

  protected:
    struct lua_State *L;
    
    const char *GetScriptFileLocation(const char *script_name);
};
extern LuaVM *lua;