IStringTableService
Interface IStringTableService
Namespace: SwiftlyS2.Shared.StringTable
Assembly: SwiftlyS2.CS2.dll
public interface IStringTableServiceMethods
FindTable(string)
Finds a string table by name.
IStringTable? FindTable(string tableName)Parameters
- tableName string — The name of the string table to find.
Returns
- IStringTable? — The string table, or null if the string table is not found.
FindTableById(int)
Finds a string table by ID.
IStringTable? FindTableById(int tableId)Parameters
- tableId int — The ID of the string table to find.
Returns
- IStringTable? — The string table, or null if the string table is not found.