-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: refact renaming LuaMappings to Functions
- Loading branch information
Showing
46 changed files
with
227 additions
and
227 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
...ts.LuaJIT/LuaMappings/ActionLuaMapping.cs → ...ripts.LuaJIT/Functions/ActionFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...s.LuaJIT/LuaMappings/ConfigLuaMappingr.cs → ...ripts.LuaJIT/Functions/ConfigFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
....LuaJIT/LuaMappings/CreatureLuaMapping.cs → ...pts.LuaJIT/Functions/CreatureFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ipts.LuaJIT/LuaMappings/EnumLuaMapping.cs → ...Scripts.LuaJIT/Functions/EnumFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ts.LuaJIT/LuaMappings/GlobalLuaMapping.cs → ...ripts.LuaJIT/Functions/GlobalFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IActionFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IActionFunctions : IBaseFunctions | ||
{ | ||
} |
8 changes: 8 additions & 0 deletions
8
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IBaseFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using LuaNET; | ||
|
||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IBaseFunctions | ||
{ | ||
void Init(LuaState L); | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IConfigFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IConfigFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/ICreatureFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface ICreatureFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IEnumFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IEnumFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IGameFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IGameFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IGlobalFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IGlobalFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IItemFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IItemFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IItemTypeFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IItemTypeFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/ILoggerFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface ILoggerFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IMonsterFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IMonsterFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IPlayerFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IPlayerFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/IPositionFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface IPositionFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/ITalkActionFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface ITalkActionFunctions : IBaseFunctions | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
src/Extensions/NeoServer.Scripts.LuaJIT/Functions/Interfaces/ITileFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace NeoServer.Scripts.LuaJIT.Functions.Interfaces; | ||
|
||
public interface ITileFunctions : IBaseFunctions | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ts.LuaJIT/LuaMappings/LoggerLuaMapping.cs → ...ripts.LuaJIT/Functions/LoggerFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...s.LuaJIT/LuaMappings/MonsterLuaMapping.cs → ...ipts.LuaJIT/Functions/MonsterFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...uaJIT/LuaMappings/TalkActionLuaMapping.cs → ...s.LuaJIT/Functions/TalkActionFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.