Scripts/Runtime/Data/Entities/DynamicEntityProvider.cs (14 lines of code) (raw):

/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. */ using Facebook.WitAi.Interfaces; using UnityEngine; namespace Facebook.WitAi.Data.Entities { public class DynamicEntityProvider : MonoBehaviour, IDynamicEntitiesProvider { [SerializeField] protected WitDynamicEntities entities; public WitDynamicEntities GetDynamicEntities() { return entities; } } }