mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-14 12:34:05 +09:00
13 lines
225 B
Kotlin
13 lines
225 B
Kotlin
package net.torvald.terrarum.gameactors
|
|
|
|
import net.torvald.terrarum.gameactors.faction.Faction
|
|
import java.util.*
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-02-15.
|
|
*/
|
|
interface Factionable {
|
|
|
|
var faction: HashSet<Faction>
|
|
|
|
} |