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

com.almasb.fxgl.entity.EntityExt.kt Maven / Gradle / Ivy

/*
 * FXGL - JavaFX Game Library. The MIT License (MIT).
 * Copyright (c) AlmasB ([email protected]).
 * See LICENSE for details.
 */

package com.almasb.fxgl.entity

import com.almasb.fxgl.entity.component.Component

/**
 * @return component of given type or throws exception if entity has no such component
 */
inline fun  Entity.getComponent(): T {
    return this.getComponent(T::class.java)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy