mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-03-22 09:44:16 -05:00
13 lines
237 B
Plaintext
13 lines
237 B
Plaintext
///button_create(x, y, type)
|
|
function button_create(argument0, argument1, argument2) {
|
|
|
|
var hold = instance_create_depth(0, 0, depth-1, obj_button);
|
|
|
|
with (hold)
|
|
button_set(argument0, argument1, argument2);
|
|
|
|
return hold;
|
|
|
|
|
|
}
|