mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-14 20:44:05 +09:00
Former-commit-id: 4cddfb080cc689738d9bf308f7d08852f4c78a8b Former-commit-id: 2354b2483f30e70862a327c1b9688a19bd1b2f66
16 lines
319 B
Kotlin
16 lines
319 B
Kotlin
package net.torvald.terrarum.gameactors
|
|
|
|
import org.dyn4j.geometry.Vector2
|
|
|
|
/**
|
|
* Created by minjaesong on 16-08-29.
|
|
*/
|
|
class ProjectileHoming(
|
|
type: Int,
|
|
fromPoint: Vector2, // projected coord
|
|
toPoint: Vector2 // arriving coord
|
|
) : ProjectileSimple(type, fromPoint, toPoint) {
|
|
|
|
|
|
|
|
} |