mirror of
				https://github.com/ClassiCube/ClassiCube.git
				synced 2025-11-03 19:16:45 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
 | 
						|
using System;
 | 
						|
using OpenTK.Input;
 | 
						|
 | 
						|
namespace ClassicalSharp.Mode {
 | 
						|
 | 
						|
	public interface IGameMode : IGameComponent {
 | 
						|
		
 | 
						|
		bool HandlesKeyDown(Key key);
 | 
						|
		void PickLeft(byte old);
 | 
						|
		void PickMiddle(byte old);
 | 
						|
		void PickRight(byte old, byte block);
 | 
						|
	}
 | 
						|
}
 |