plantmaterial.c 242 B

123456789101112131415
  1. class PlantMaterialHealth
  2. {
  3. string m_InfestedTex;
  4. string m_InfestedMat;
  5. string m_HealthyTex;
  6. string m_HealthyMat;
  7. void PlantMaterialHealth()
  8. {
  9. m_InfestedTex = "";
  10. m_InfestedMat = "";
  11. m_HealthyTex = "";
  12. m_HealthyMat = "";
  13. }
  14. }