mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 13:58:31 -05:00
16 lines
485 B
C#
16 lines
485 B
C#
using System.Collections.Generic;
|
|
using ZoneCodeGenerator.Domain;
|
|
using ZoneCodeGenerator.Domain.FastFileStructure;
|
|
using ZoneCodeGenerator.Persistence;
|
|
|
|
namespace ZoneCodeGenerator.Parsing.CommandFile
|
|
{
|
|
interface ICommandParserState : IParserState<ICommandParserState>
|
|
{
|
|
string Game { get; set; }
|
|
IReadOnlyDataRepository Repository { get; }
|
|
List<FastFileBlock> FastFileBlocks { get; }
|
|
DataTypeWithMembers DataTypeInUse { get; set; }
|
|
}
|
|
}
|