Files
ox_lib/web/src/features/dev/debug/textui.ts
T

16 lines
373 B
TypeScript
Raw Normal View History

2022-08-27 15:40:41 +02:00
import { TextUiProps } from "../../textui/TextUI";
import { debugData } from "../../../utils/debugData";
export const debugTextUI = () => {
debugData<TextUiProps>([
{
action: "textUi",
data: {
text: "[E] - Access locker inventory \n [G] - Do something else",
position: "right-center",
icon: "door-open",
},
},
]);
};