Skip to content

Commit

Permalink
- Added ResourceInfo parser interfaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
TBN-MapleWheels committed Sep 22, 2024
1 parent 0e34bb9 commit 99a2595
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Barotrauma.LuaCs.Data;

// TODO: Finish
public interface IConfigDefinitionInfo
public interface IConfigInfo
{
public string Name { get; }
public string PackageName { get; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Barotrauma.LuaCs.Services.Parsers;

public interface IXmlAssemblyResParser : IXmlResourceParser
{

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Barotrauma.LuaCs.Services.Parsers;

public interface IXmlConfigResParser : IXmlResourceParser
{

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Barotrauma.LuaCs.Services.Parsers;

public interface IXmlDependencyResParser : IXmlResourceParser
{

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Barotrauma.LuaCs.Services.Parsers;

public interface IXmlLocalizationResParser
{

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Barotrauma.LuaCs.Services.Parsers;

public interface IXmlResourceParser
{

}

0 comments on commit 99a2595

Please sign in to comment.