A 2D Farming RPG
This is just a simple 2D farming RPG game
Loading...
Searching...
No Matches
GridPropertyDetails.cs
Go to the documentation of this file.
1[System.Serializable]
7{
8 public int m_gridX;
9 public int m_gridY;
10 public bool m_IsDiggable = false;
11 public bool m_CanDropItem = false;
12 public bool m_CanPlaceFurniture = false;
13 public bool m_IsPath = false;
14 public bool m_IsNPCObstacle = false;
15 public int m_DaysSinceDug = -1;
16 public int m_DaysSinceWatered = -1;
17 public int m_SeedItemCode = -1;
18 public int m_GrowthDays = -1;
19 public int m_DaysSinceLastHarvest = -1;
20
25 {
26
27 }
28}
This will get the information from serialiable object and populate these class Basically this will st...