Fix stupid minecraft

This commit is contained in:
2024-08-05 13:31:08 +02:00
parent 7259b53176
commit cd5f473460
24 changed files with 7208 additions and 156 deletions

View File

@@ -0,0 +1,13 @@
/**
* All possible MinecraftCameraPresetsTypes
*/
export enum MinecraftCameraPresetsTypes {
FirstPerson = "minecraft:first_person",
Free = "minecraft:free",
ThirdPerson = "minecraft:third_person",
ThirdPersonFront = "minecraft:third_person_front",
}
/**
* Union type equivalent of the MinecraftCameraPresetsTypes enum.
*/
export type MinecraftCameraPresetsTypesUnion = keyof typeof MinecraftCameraPresetsTypes;