using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TJAPlayer3.Animations { /// /// アニメーション インターフェイス。 /// interface IAnimatable { /// /// アニメーションを開始します。 /// void Start(); /// /// アニメーションを停止します。 /// void Stop(); /// /// アニメーションをリセットします。 /// void Reset(); /// /// アニメーションの進行を行います。 /// void Tick(); /// /// アニメーションのパラメータを返します。 /// /// アニメーションのパラメータを返します。 object GetAnimation(); } }