Last active
August 2, 2020 21:35
-
-
Save Jakob-PB/154c903474e6b2a8a331a831d9cef6ac to your computer and use it in GitHub Desktop.
My default template for new GDScript files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#------------------------------------------------------------------------------# | |
# Copyright (c) 2020, Jakob Bjerkness. All rights reserved. # | |
#------------------------------------------------------------------------------# | |
# | |
# [Class Overview]: | |
# | |
extends %BASE% | |
#------------------------------------------------------------------------------# | |
# Exports # | |
#------------------------------------------------------------------------------# | |
#------------------------------------------------------------------------------# | |
# Signals # | |
#------------------------------------------------------------------------------# | |
#------------------------------------------------------------------------------# | |
# Public Variables # | |
#------------------------------------------------------------------------------# | |
#------------------------------------------------------------------------------# | |
# Private Variables # | |
#------------------------------------------------------------------------------# | |
#==============================================================================# | |
# Getters/Setters # | |
#==============================================================================# | |
#==============================================================================# | |
# Public Functions # | |
#==============================================================================# | |
#==============================================================================# | |
# Notifications # | |
#==============================================================================# | |
func _ready() -> void: | |
pass | |
#==============================================================================# | |
# Overrides # | |
#==============================================================================# | |
#==============================================================================# | |
# Virtual Functions # | |
#==============================================================================# | |
#==============================================================================# | |
# Callbacks # | |
#==============================================================================# | |
#==============================================================================# | |
# Private Functions # | |
#==============================================================================# | |
################################################################################ | |
# Inner Classes # | |
################################################################################ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment