I am trying to assign a position to a Sprite Kit node but from my code error throughs as Use of unresolved identifier 'CGPointMake'
class PlayerGun: Spaceship {
func launchRocket() {
var rocket = Missile.playerMissile()
// This line gives above mentioned error.
rocket.position = CGPointMake(0.0, 0.0)
}
}