/**************************************************************************** * Copyright 2019 Nreal Techonology Limited. All rights reserved. * * This file is part of NRSDK. * * https://www.nreal.ai/ * *****************************************************************************/ namespace NRKernal { using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// The interface contains methods for controller provider to parse raw sates to usable states. public interface IControllerStateParser { /// Parser controller state. /// The state. void ParserControllerState(ControllerState state); } }