13 lines
577 B
Lua
13 lines
577 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias barberShopStyleIndex
|
|
---| 1 - Hair (or Horn) Style
|
|
---| 2 - Hair (or Horn) Color
|
|
---| 3 - Varies by race and gender: Facial Hair, Earrings, Features, Hair, Horns, Markings, Normal, Piercings, or Tusks
|
|
|
|
---@param styleIndex barberShopStyleIndex
|
|
---@param reverse boolean
|
|
---Selects the next style for a barber shop style option. Changes the underlying data (and thus the character's appearance) only; the default barbershop UI does not update.
|
|
function SetNextBarberShopStyle(styleIndex, reverse) end
|