diff options
Diffstat (limited to 'source/WindowsFormsApplication1/Engine')
| -rw-r--r-- | source/WindowsFormsApplication1/Engine/Lua_Interp.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/Engine/Lua_Interp.cs b/source/WindowsFormsApplication1/Engine/Lua_Interp.cs index 88a51a3..5b338ae 100644 --- a/source/WindowsFormsApplication1/Engine/Lua_Interp.cs +++ b/source/WindowsFormsApplication1/Engine/Lua_Interp.cs @@ -642,6 +642,7 @@ end"); } }; }); + mod.open_File = mod.fileskimmer_open; mod.fileskimmer_save += new Action<string, string>((filters, func) => { API.CreateFileSkimmerSession(filters, File_Skimmer.FileSkimmerMode.Save); @@ -655,6 +656,7 @@ end"); } }; }); + mod.save_File = mod.fileskimmer_save; mod.font = new Func<string, int, Font>((style, size) => { return new Font(style, size); }); |
