add category for platform

This commit is contained in:
Vasyl Kazakov
2026-06-18 15:40:29 +03:00
parent 852e1ec963
commit 7cc63dbba9
5 changed files with 41 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
import { ConfigUiParamsCategories } from "@24tools/ads_common";
export const characterSettings: ConfigUiParamsCategories[] = [
{
id: "character",
name: "Character settings",
params: [
{
id: "movement_speed",
name: "Movement speed",
type: "int",
values: [
0,
10,
3
]
},
]
}
]