forked from kanium/starcheese
17 lines
218 B
GDScript
17 lines
218 B
GDScript
class_name WeaponsSystem
|
|
extends Node
|
|
|
|
var weapons = []
|
|
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
|
|
func fire_all():
|
|
get_tree().call_group("weapons", "fire")
|
|
|
|
|
|
func cease_fire_all():
|
|
get_tree().call_group("weapons", "cease_fire")
|