mirror of
				https://github.com/MapMakersAndProgrammers/alternativa3d-archive.git
				synced 2025-10-30 17:05:17 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			406 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			406 B
		
	
	
	
		
			ActionScript
		
	
	
	
	
	
| package alternativa.engine3d.materials {
 | |
| 	import alternativa.engine3d.*;
 | |
| 
 | |
| 	use namespace alternativa3d;
 | |
| 	
 | |
| 	/**
 | |
| 	 * Базовый класс для материалов.
 | |
| 	 */	
 | |
| 	public class Material {
 | |
| 		
 | |
| 		/**
 | |
| 		 * Создание клона материала.
 | |
| 		 * 
 | |
| 		 * @return клон материала
 | |
| 		 */
 | |
| 		public function clone():Material {
 | |
| 			return new Material();
 | |
| 		}
 | |
| 	}
 | |
| } | 
