C# 클래스 hyades.utils.TimerCollection

A managed collection of timers.
파일 보기 프로젝트 열기: zfedoran/bubblebound 1 사용 예제들

공개 메소드들

메소드 설명
Create ( float tickLength, bool repeats, Action tick ) : Timer

Creates a new Timer.

GetInstance ( ) : TimerCollection
Update ( double elapsed ) : void

Updates all timers in the collection.

비공개 메소드들

메소드 설명
TimerCollection ( ) : System

메소드 상세

Create() 공개 메소드

Creates a new Timer.
public Create ( float tickLength, bool repeats, Action tick ) : Timer
tickLength float The amount of time between the timer's ticks.
repeats bool Whether or not the timer repeats.
tick Action An action to perform when the timer ticks.
리턴 Timer

GetInstance() 공개 정적인 메소드

public static GetInstance ( ) : TimerCollection
리턴 TimerCollection

Update() 공개 메소드

Updates all timers in the collection.
public Update ( double elapsed ) : void
elapsed double
리턴 void