mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-11-04 14:38:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			230 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			230 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections;
 | 
						|
using System.Collections.Generic;
 | 
						|
using UnityEngine;
 | 
						|
 | 
						|
public class StoneItem : Item
 | 
						|
{
 | 
						|
    public StoneItem(int c = 1)
 | 
						|
    {
 | 
						|
        count = c;
 | 
						|
        name = "Stone";
 | 
						|
        uuid = "item_stone";
 | 
						|
    }
 | 
						|
}
 |