File size: 242 Bytes
24b81cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class PlantMaterialHealth
{
	string m_InfestedTex;
	string m_InfestedMat;
	string m_HealthyTex;
	string m_HealthyMat;
	
	void PlantMaterialHealth()
	{
		m_InfestedTex = "";
		m_InfestedMat = "";
		m_HealthyTex = "";
		m_HealthyMat = "";
	}
}