Split client and server
This commit is contained in:
7
client/player/Player.gd
Normal file
7
client/player/Player.gd
Normal file
@ -0,0 +1,7 @@
|
||||
class_name Player
|
||||
extends Character
|
||||
|
||||
func _ready():
|
||||
var controller := PlayerController.new()
|
||||
controller.character = self
|
||||
add_child(controller)
|
Reference in New Issue
Block a user