Interface ILifeBarFrame

A life bar frame.

interface ILifeBarFrame {
    health: number;
    startTime: number;
    clone(): ILifeBarFrame;
}

Implemented by

Properties

Methods

Properties

health: number

The amount of HP at that current time. This value is in range of 0-1.

startTime: number

Starting time of this life bar frame.

Methods