mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-08 23:46:04 +03:00
9 lines
114 B
C#
9 lines
114 B
C#
|
using System;
|
||
|
|
||
|
namespace DotTiled;
|
||
|
|
||
|
public interface ITemplateReader : IDisposable
|
||
|
{
|
||
|
Template ReadTemplate();
|
||
|
}
|