Add pick_rot
This commit is contained in:
parent
ac1f4477ef
commit
3a271a399f
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include "art.h"
|
#include "art.h"
|
||||||
#include "proto.h"
|
#include "proto.h"
|
||||||
|
#include "window_manager_private.h"
|
||||||
|
|
||||||
namespace fallout {
|
namespace fallout {
|
||||||
|
|
||||||
|
@ -59,4 +60,18 @@ int target_exit()
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 0x49BD98
|
||||||
|
int pick_rot()
|
||||||
|
{
|
||||||
|
int value;
|
||||||
|
win_get_num_i(&value,
|
||||||
|
-1,
|
||||||
|
5,
|
||||||
|
false,
|
||||||
|
"Rotation",
|
||||||
|
100,
|
||||||
|
100);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace fallout
|
} // namespace fallout
|
||||||
|
|
|
@ -8,6 +8,7 @@ bool target_overriden();
|
||||||
void target_make_path(char* path, int pid);
|
void target_make_path(char* path, int pid);
|
||||||
int target_init();
|
int target_init();
|
||||||
int target_exit();
|
int target_exit();
|
||||||
|
int pick_rot();
|
||||||
|
|
||||||
} // namespace fallout
|
} // namespace fallout
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue