mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 04:16:12 +01:00
Added Cannon Module
This commit is contained in:
11
Cannon.gd
Normal file
11
Cannon.gd
Normal file
@@ -0,0 +1,11 @@
|
||||
extends Module
|
||||
|
||||
class_name Cannon
|
||||
|
||||
|
||||
|
||||
#------------Methods-------------#
|
||||
|
||||
#TODO: FINISH
|
||||
func interact():
|
||||
pass
|
||||
@@ -1,5 +1,6 @@
|
||||
extends Node
|
||||
|
||||
class_name Module
|
||||
#-----------Parameters----------------'
|
||||
var currentStashValue = 0 : set = _set_currentStashValue, get = _get_currentStashValue
|
||||
|
||||
|
||||
@@ -8,6 +8,22 @@
|
||||
|
||||
config_version=5
|
||||
|
||||
_global_script_classes=[{
|
||||
"base": "Module",
|
||||
"class": &"Cannon",
|
||||
"language": &"GDScript",
|
||||
"path": "res://Cannon.gd"
|
||||
}, {
|
||||
"base": "Node",
|
||||
"class": &"Module",
|
||||
"language": &"GDScript",
|
||||
"path": "res://Module.gd"
|
||||
}]
|
||||
_global_script_class_icons={
|
||||
"Cannon": "",
|
||||
"Module": ""
|
||||
}
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Semester Game Jam 2022"
|
||||
|
||||
Reference in New Issue
Block a user