memomem

備忘録・メモ置き場

interface

C# interface 時間での進行・再生

/// <summary> ///時間での制御可能なインターフェース /// </summary> public interface ITimePlayable { bool IsPlaying { get; } bool IsLoop { get; } // 経過時間 float CurrentTime { get; } // 経過パーセンテージ float Progress { get; } // 全体の尺 float Length { g…

C# interface について

qiita.com qiita.com