Add screen width to client natives

This commit is contained in:
Vortrex
2022-05-10 17:29:45 -05:00
parent eb55a60db9
commit d389d998b9

View File

@@ -567,4 +567,16 @@ function getPlayerPed(client) {
return client.player;
}
// ===========================================================================
function getScreenWidth() {
return game.width;
}
// ===========================================================================
function getScreenHeight() {
return game.height;
}
// ===========================================================================