TextureLoader.cs 158 B

1234567891011
  1. using System;
  2. namespace Spine
  3. {
  4. public interface TextureLoader
  5. {
  6. void Load(AtlasPage page, string path);
  7. void Unload(object texture);
  8. }
  9. }