forked from FakeFishGames/Barotrauma
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added ResourceInfo parser interfaces.
- Loading branch information
1 parent
0e34bb9
commit 99a2595
Showing
6 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
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
6 changes: 6 additions & 0 deletions
6
Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Parsers/IXmlAssemblyResParser.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,6 @@ | ||
namespace Barotrauma.LuaCs.Services.Parsers; | ||
|
||
public interface IXmlAssemblyResParser : IXmlResourceParser | ||
{ | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Parsers/IXmlConfigResParser.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,6 @@ | ||
namespace Barotrauma.LuaCs.Services.Parsers; | ||
|
||
public interface IXmlConfigResParser : IXmlResourceParser | ||
{ | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Parsers/IXmlDependencyResParser.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,6 @@ | ||
namespace Barotrauma.LuaCs.Services.Parsers; | ||
|
||
public interface IXmlDependencyResParser : IXmlResourceParser | ||
{ | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Parsers/IXmlLocalizationResParser.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,6 @@ | ||
namespace Barotrauma.LuaCs.Services.Parsers; | ||
|
||
public interface IXmlLocalizationResParser | ||
{ | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Parsers/IXmlResourceParser.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,6 @@ | ||
namespace Barotrauma.LuaCs.Services.Parsers; | ||
|
||
public interface IXmlResourceParser | ||
{ | ||
|
||
} |