All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.robocode.tankroyale.server.event.BulletFiredEvent.kt Maven / Gradle / Ivy

package dev.robocode.tankroyale.server.event

import dev.robocode.tankroyale.server.model.IBullet

/** Event sent when a bullet has fired a bullet. */
class BulletFiredEvent(
    /** Turn number when event occurred */
    override val turnNumber: Int,

    /** Fired bullet */
    val bullet: IBullet,
) : Event()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy