mirror of
				https://github.com/ClassiCube/ClassiCube.git
				synced 2025-11-04 03:27:49 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace ClassicalSharp {
 | 
						|
	
 | 
						|
	public enum PacketId {
 | 
						|
		Handshake = 0,
 | 
						|
		Ping = 1,
 | 
						|
		LevelInitialise = 2,
 | 
						|
		LevelDataChunk = 3,
 | 
						|
		LevelFinalise = 4,
 | 
						|
		SetBlockClient = 5,
 | 
						|
		SetBlock = 6,
 | 
						|
		AddEntity = 7,
 | 
						|
		EntityTeleport = 8,
 | 
						|
		RelPosAndOrientationUpdate = 9,
 | 
						|
		RelPosUpdate = 10,
 | 
						|
		OrientationUpdate = 11,
 | 
						|
		RemoveEntity = 12,
 | 
						|
		Message = 13,
 | 
						|
		Kick = 14,
 | 
						|
		SetPermission = 15,
 | 
						|
		
 | 
						|
		CpeExtInfo = 16,
 | 
						|
		CpeExtEntry = 17,
 | 
						|
		CpeSetClickDistance = 18,
 | 
						|
		CpeCustomBlockSupportLevel = 19,
 | 
						|
		CpeHoldThis = 20,
 | 
						|
		CpeSetTextHotkey = 21,
 | 
						|
		CpeExtAddPlayerName = 22,
 | 
						|
		CpeExtAddEntity = 23,
 | 
						|
		CpeExtRemovePlayerName = 24,
 | 
						|
		CpeEnvColours = 25,
 | 
						|
		CpeMakeSelection = 26,
 | 
						|
		CpeRemoveSelection = 27,
 | 
						|
		CpeSetBlockPermission = 28,
 | 
						|
		CpeChangeModel = 29,
 | 
						|
		CpeEnvSetMapApperance = 30,
 | 
						|
		CpeEnvWeatherType = 31,
 | 
						|
		CpeHackControl = 32,
 | 
						|
		CpeExtAddEntity2 = 33,
 | 
						|
		CpePlayerClick = 34,
 | 
						|
	}
 | 
						|
	
 | 
						|
	public enum CpeMessage {
 | 
						|
		Normal = 0,
 | 
						|
		Status1 = 1,
 | 
						|
		Status2 = 2,
 | 
						|
		Status3 = 3,
 | 
						|
		BottomRight1 = 11,
 | 
						|
		BottomRight2 = 12,
 | 
						|
		BottomRight3 = 13,
 | 
						|
		Announcement = 100,
 | 
						|
	}
 | 
						|
	
 | 
						|
	public enum CpeBlockFace {
 | 
						|
		XMax,
 | 
						|
		XMin,
 | 
						|
		YMax,
 | 
						|
		YMin,
 | 
						|
		ZMax,
 | 
						|
		ZMin,
 | 
						|
	}
 | 
						|
}
 |