forked from cgvr/DeltaVR
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			305 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			305 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace FishNet.Object.Prediction
 | 
						|
{
 | 
						|
    public interface IReplicateData
 | 
						|
    {
 | 
						|
        uint GetTick();
 | 
						|
        void SetTick(uint value);
 | 
						|
        void Dispose();
 | 
						|
    }
 | 
						|
 | 
						|
    public interface IReconcileData
 | 
						|
    {
 | 
						|
        uint GetTick();
 | 
						|
        void SetTick(uint value);
 | 
						|
        void Dispose();
 | 
						|
    }
 | 
						|
 | 
						|
} |