package com.github.czyzby.lml.parser.impl.tag.actor.provider; import com.github.czyzby.lml.parser.LmlParser; import com.github.czyzby.lml.parser.impl.tag.actor.DialogLmlTag; import com.github.czyzby.lml.parser.tag.LmlTag; import com.github.czyzby.lml.parser.tag.LmlTagProvider; /** Provides Dialog tags. * * @author MJ */ public class DialogLmlTagProvider implements LmlTagProvider { @Override public LmlTag create(final LmlParser parser, final LmlTag parentTag, final StringBuilder rawTagData) { return new DialogLmlTag(parser, parentTag, rawTagData); } }