Skip to main content

Interface: Updatable

Defined in: common/types/Updatable.ts:4

Represents an object that can be updated over time.

Properties

update()

update: (deltaTime) => void

Defined in: common/types/Updatable.ts:9

Updates the object with the given time.

Parameters

deltaTime

number

The time between the last frame and the current one.

Returns

void