blob: 4929d0faad13068b5f738a298de1317fcb87345b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using UnityEngine;
namespace XUtliPoolLib
{
public interface IXHUDDescription : IXInterface
{
AnimationCurve GetPosCurve();
AnimationCurve GetAlphaCurve();
AnimationCurve GetScaleCurve();
}
}
|