Add pick_rot

This commit is contained in:
Alexander Batalov 2023-07-24 08:10:46 +03:00
parent ac1f4477ef
commit 3a271a399f
2 changed files with 16 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include "art.h"
#include "proto.h"
#include "window_manager_private.h"
namespace fallout {
@ -59,4 +60,18 @@ int target_exit()
return 0;
}
// 0x49BD98
int pick_rot()
{
int value;
win_get_num_i(&value,
-1,
5,
false,
"Rotation",
100,
100);
return value;
}
} // namespace fallout

View File

@ -8,6 +8,7 @@ bool target_overriden();
void target_make_path(char* path, int pid);
int target_init();
int target_exit();
int pick_rot();
} // namespace fallout