add gamegit and gkplayer to teamcomponent

This commit is contained in:
Jakob Haag 2020-05-11 18:03:45 +02:00
parent fa1b40b263
commit f67c673ca7

View File

@ -8,12 +8,14 @@
import SpriteKit
import GameplayKit
import GameKit
class TeamComponent: GKComponent {
let team: Team
let fire: SKEmitterNode
let player: GKPlayer
init(team: Team, position: CGPoint) {
init(team: Team, position: CGPoint, player: GKPlayer) {
fire = SKEmitterNode(fileNamed: "Fire")!
fire.zPosition = -1
fire.position = position
@ -29,6 +31,7 @@ class TeamComponent: GKComponent {
}
self.team = team
self.player = player
super.init()
}