mirror of
https://github.com/Relintai/GraphicsEditor.git
synced 2024-11-12 08:15:17 +01:00
18 lines
151 B
GDScript
18 lines
151 B
GDScript
extends Reference
|
|
|
|
|
|
var action_data = {}
|
|
var painter
|
|
|
|
|
|
func _init():
|
|
pass
|
|
|
|
|
|
func do_action(data: Array):
|
|
pass
|
|
|
|
|
|
func undo_action(data: Array):
|
|
pass
|