16 lines
631 B
C#
16 lines
631 B
C#
namespace Managers
|
|
{
|
|
// This is a manager class for the farm. It will be responsible for making sure that the
|
|
// farm is running smoothly and that all the crops are growing as they should.
|
|
// A grid system needs to be implemented to keep track of every 32x32 square on the farm.
|
|
// This will allow for the player to plant crops in a specific location and for the game to
|
|
// keep track of the growth stage of each crop. Also this will allow other things like buildings and
|
|
// animals to be placed on the farm.
|
|
public class FarmManager
|
|
{
|
|
// Farm properties
|
|
|
|
|
|
// Farm methods
|
|
}
|
|
} |