init
This commit is contained in:
commit
b99855351d
434 changed files with 50357 additions and 0 deletions
27
addons/inkgd/runtime/content/ink_void.gd
Normal file
27
addons/inkgd/runtime/content/ink_void.gd
Normal file
|
@ -0,0 +1,27 @@
|
|||
# ############################################################################ #
|
||||
# Copyright © 2015-2021 inkle Ltd.
|
||||
# Copyright © 2019-2022 Frédéric Maquin <fred@ephread.com>
|
||||
# All Rights Reserved
|
||||
#
|
||||
# This file is part of inkgd.
|
||||
# inkgd is licensed under the terms of the MIT license.
|
||||
# ############################################################################ #
|
||||
|
||||
extends InkObject
|
||||
|
||||
class_name InkVoid
|
||||
|
||||
# ############################################################################ #
|
||||
# GDScript extra methods
|
||||
# ############################################################################ #
|
||||
|
||||
func is_ink_class(type: String) -> bool:
|
||||
return type == "Void" || super.is_ink_class(type)
|
||||
|
||||
|
||||
func get_ink_class() -> String:
|
||||
return "Void"
|
||||
|
||||
|
||||
func _to_string() -> String:
|
||||
return "Void"
|
Loading…
Add table
Add a link
Reference in a new issue