10 lines
137 B
GDScript
10 lines
137 B
GDScript
|
extends "res://Scripts/PlanElement.gd"
|
||
|
class_name WeaponsElement
|
||
|
|
||
|
|
||
|
var firing : bool = false
|
||
|
|
||
|
func sanity_check() -> bool:
|
||
|
return true
|
||
|
|