summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/GrowStage.cs
blob: 214164f8cce46cd24d263e937f54b694e684c7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace XMainClient
{
	internal enum GrowStage
	{
		None,
		First,
		Second,
		Third,
		Ripe
	}
}