13 lines
295 B
C#
13 lines
295 B
C#
|
namespace Ficdown.Parser.Engine
|
|||
|
{
|
|||
|
using System.Collections.Generic;
|
|||
|
using Model.Parser;
|
|||
|
using Model.Story;
|
|||
|
|
|||
|
public interface IBlockHandler
|
|||
|
{
|
|||
|
IEnumerable<Block> ExtractBlocks(IEnumerable<string> lines);
|
|||
|
Story ParseBlocks(IEnumerable<Block> blocks);
|
|||
|
}
|
|||
|
}
|