Skip to content

Instantly share code, notes, and snippets.

@phnix-dev
Created July 1, 2024 21:39
Show Gist options
  • Save phnix-dev/1cb84ffe8b6263d1cfd53c4bbab36b99 to your computer and use it in GitHub Desktop.
Save phnix-dev/1cb84ffe8b6263d1cfd53c4bbab36b99 to your computer and use it in GitHub Desktop.
class_name Gate
extends RefCounted
## Do not use
var _open: bool = true
func is_opened() -> bool:
return _open
func close() -> void:
_open = false
func open() -> void:
_open = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment