| 546 | } |
| 547 | |
| 548 | void CUIStatic::SetTextAlign_script(u32 align) |
| 549 | { |
| 550 | m_pLines->SetTextAlignment((CGameFont::EAligment)align); |
| 551 | m_pLines->GetFont()->SetAligment((CGameFont::EAligment)align); |
| 552 | } |
| 553 | |
| 554 | u32 CUIStatic::GetTextAlign_script() { return static_cast<u32>(m_pLines->GetTextAlignment()); } |
| 555 |
nothing calls this directly
no test coverage detected