using System; namespace Spine { public interface TextureLoader { void Load(AtlasPage page, string path); void Unload(object texture); } }