Head First C# Code: Chapter 13
Beehive Simulator (graphics)
BeeState.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _3_Beehive_Simulator__graphics_
{
public enum BeeState
{
Idle,
FlyingToFlower,
GatheringNectar,
ReturningToHive,
MakingHoney,
Retired,
}
}







