您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
412 B
19 行
412 B
using System;
|
|
|
|
namespace GameplayIngredients.Rigs
|
|
{
|
|
public abstract class AnimationHandler<T> : AnimationHandler
|
|
{
|
|
public sealed override Type animatedType => typeof(T);
|
|
|
|
public abstract void OnStart(T defaultValue);
|
|
|
|
public abstract T OnUpdate(float deltaTime);
|
|
}
|
|
|
|
public abstract class AnimationHandler
|
|
{
|
|
public abstract Type animatedType { get; }
|
|
}
|
|
|
|
}
|