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

9 lines
172 B
Plaintext

/// @description (Old DnD) - move to another room
/// @param roomIndex room index to go to.
function action_another_room(argument0) {
room_goto( argument0 );
}