14 lines
313 B
C#
14 lines
313 B
C#
using UnityEngine;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AnimationImporter
|
|
{
|
|
public interface IAnimationImporterPlugin
|
|
{
|
|
ImportedAnimationSheet Import(AnimationImportJob job, AnimationImporterSharedConfig config);
|
|
bool IsValid();
|
|
bool IsConfigured();
|
|
}
|
|
} |