mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 12:21:52 +09:00
18 lines
392 B
Kotlin
18 lines
392 B
Kotlin
package net.torvald.terrarum.gameactors
|
|
|
|
import net.torvald.terrarum.gameworld.GameWorld
|
|
import org.dyn4j.geometry.Vector2
|
|
|
|
/**
|
|
* Created by minjaesong on 16-08-29.
|
|
*/
|
|
class ProjectileHoming(
|
|
world: GameWorld,
|
|
type: Int,
|
|
fromPoint: Vector2, // projected coord
|
|
toPoint: Vector2 // arriving coord
|
|
) : ProjectileSimple(world, type, fromPoint, toPoint) {
|
|
|
|
|
|
|
|
} |