* A single log message for the output log, holding a message and * a style, for color and bolding of the message. */
| 14 | * a style, for color and bolding of the message. |
| 15 | */ |
| 16 | struct FLogMessage |
| 17 | { |
| 18 | TSharedRef<FString> Message; |
| 19 | FName Style; |
| 20 | |
| 21 | FLogMessage(const TSharedRef<FString>& NewMessage, FName NewStyle = NAME_None) |
| 22 | : Message(NewMessage) |
| 23 | , Style(NewStyle) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | }; |
| 28 | |
| 29 | /** |
| 30 | * Console input box with command-completion support |
nothing calls this directly
no outgoing calls
no test coverage detected