diff options
Diffstat (limited to 'client/map/items/glass_items.gd')
-rw-r--r-- | client/map/items/glass_items.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/map/items/glass_items.gd b/client/map/items/glass_items.gd new file mode 100644 index 00000000..29d87c7a --- /dev/null +++ b/client/map/items/glass_items.gd @@ -0,0 +1,6 @@ +class_name GlassItems + +class WaterG extends GlassFill: + func _init(owned_by_: Node3D): + super(owned_by_) + set_color(Color(.5, .6, .8)) |