| 383 | } |
| 384 | |
| 385 | int AFCNetClientService::GetActorBusID(const AFGUID& actor) |
| 386 | { |
| 387 | auto iter = actor_bus_map_.find(actor); |
| 388 | if (iter == actor_bus_map_.end()) |
| 389 | { |
| 390 | return -1; |
| 391 | } |
| 392 | |
| 393 | return iter->second; |
| 394 | } |
| 395 | |
| 396 | } // namespace ark |