Skip to main content

IHoverableControl

/// <summary>                                                            
/// This marks a tile as accepting BoolPackets for                       
/// New Input System hover events.                                       
/// When used for zones, the packet value is true when a                 
/// zone is entered or false when the zone is exited.                    
/// </summary>                                                           
public interface IHoverableControl: ITpMessaging<BoolPacket>             
{                                                                        
    /// <inheritdoc />                                                   
    void ITpMessaging<BoolPacket>.MessageTarget(BoolPacket sentPacket)   
    {                                                                    
        throw new System.NotImplementedException();                      
    }      
}