Super Bomber Kit
Search Results for

    Show / Hide Table of Contents

    Interface IEnemy

    Interface used for enemies. It serves to decouple all enemies and maintain access for the level manager in a decoupled manner.

    Inherited Members
    IDamageTaker.TakeDamage(DamageEmissionDto)
    Namespace: BomberDogs.Enemies
    Assembly: Assembly-CSharp.dll
    Syntax
    public interface IEnemy : IDamageTaker

    Methods

    | Edit this page View Source

    Freeze(float)

    Paralyzes this character

    Declaration
    void Freeze(float duration)
    Parameters
    Type Name Description
    float duration

    Duration in seconds

    | Edit this page View Source

    GetScorePointsForDeath()

    Get the score points when he dies

    Declaration
    int GetScorePointsForDeath()
    Returns
    Type Description
    int

    Score

    Events

    | Edit this page View Source

    onDie

    Event when he dies

    Declaration
    event Action<BasicEnemy, IDamageEmitter> onDie
    Event Type
    Type Description
    Action<BasicEnemy, IDamageEmitter>
    • Edit this page
    • View Source
    In this article
    Back to top