mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-02-05 17:02:49 +02:00
8 lines
114 B
C#
8 lines
114 B
C#
using System;
|
|
|
|
namespace DotTiled;
|
|
|
|
public interface ITemplateReader : IDisposable
|
|
{
|
|
Template ReadTemplate();
|
|
}
|