mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-11-03 22:18:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections;
 | 
						|
using System.Collections.Generic;
 | 
						|
using UnityEngine;
 | 
						|
 | 
						|
public class WoodItem : Item
 | 
						|
{
 | 
						|
    public WoodItem(int c = 1)
 | 
						|
    {
 | 
						|
        count = c;
 | 
						|
        name = "Wood";
 | 
						|
        uuid = "item_wood"; 
 | 
						|
    }
 | 
						|
}
 |