mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-09 04:26:04 +03:00
Tmx reader is now a base abstract class
This commit is contained in:
parent
eda3fbe308
commit
11f1ef783e
25 changed files with 1059 additions and 960 deletions
|
@ -39,7 +39,7 @@ namespace DotTiled.Benchmark
|
|||
{
|
||||
using var stringReader = new StringReader(_tmxContents);
|
||||
using var xmlReader = XmlReader.Create(stringReader);
|
||||
using var mapReader = new DotTiled.Serialization.Tmx.TmxMapReader(xmlReader, _ => throw new NotSupportedException(), _ => throw new NotSupportedException(), []);
|
||||
using var mapReader = new DotTiled.Serialization.Tmx.TmxMapReader(xmlReader, _ => throw new NotSupportedException(), _ => throw new NotSupportedException(), _ => throw new NotSupportedException());
|
||||
return mapReader.ReadMap();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue