| 75 | {} |
| 76 | |
| 77 | bool Tick() override |
| 78 | { |
| 79 | if (--TicsLeft == 0) |
| 80 | { |
| 81 | UnsafeExecutionScope scope(IsUnsafe); |
| 82 | AddCommandString(Command.GetChars()); |
| 83 | return true; |
| 84 | } |
| 85 | return false; |
| 86 | } |
| 87 | |
| 88 | FString Command; |
| 89 | int TicsLeft; |
nothing calls this directly
no test coverage detected