You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//MAKE SURE YOU USE THIS FUNCTION SO YOUR GAME DOESN'T HAVE MEMORY LEAKS
|
|
|
|
if(ds_exists(ConsoleHistory, ds_type_list)){
|
|
ds_list_destroy(ConsoleHistory);
|
|
}
|
|
|
|
if(ds_exists(ConsoleCommands, ds_type_map)){
|
|
ds_map_destroy(ConsoleCommands);
|
|
}
|
|
|