private void InitializeBot()
        {
            BotComponent bot = Instantiate(_botPrefab, _levelField);

            bot.Initialize(new LevelObject {
                coords = new Int2(), name = "bot"
            });
            bot.Initialize(this);

            _cameraTransform.SetParent(bot.transform);

            _interpreatator.Initialize(bot);
        }
 public void Initialize(BotComponent bot)
 {
     _bot = bot;
 }