ludum-dare-21/scripts/action_another_room/action_another_room.gml

9 lines
172 B
Plaintext
Raw Normal View History

2021-06-16 23:23:00 -07:00
/// @description (Old DnD) - move to another room
/// @param roomIndex room index to go to.
function action_another_room(argument0) {
room_goto( argument0 );
}