15 lines
		
	
	
		
			348 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			348 B
		
	
	
	
		
			C#
		
	
	
	
| 
								 | 
							
								using UnityEditor;
							 | 
						|||
| 
								 | 
							
								using UnityEngine;
							 | 
						|||
| 
								 | 
							
								using UnityEngine.SceneManagement;
							 | 
						|||
| 
								 | 
							
								using System;
							 | 
						|||
| 
								 | 
							
								using System.Collections;
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								[CustomEditor(typeof(ES3InspectorInfo))]
							 | 
						|||
| 
								 | 
							
								public class ES3InspectorInfoEditor : Editor
							 | 
						|||
| 
								 | 
							
								{
							 | 
						|||
| 
								 | 
							
									public override void OnInspectorGUI() 
							 | 
						|||
| 
								 | 
							
									{
							 | 
						|||
| 
								 | 
							
										EditorGUILayout.HelpBox(((ES3InspectorInfo)target).message, MessageType.Info);
							 | 
						|||
| 
								 | 
							
									}
							 | 
						|||
| 
								 | 
							
								}
							 |