Head First C#

Head First C# Code: Chapter 10
Beehive Simulator
BeeState.cs

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _0_Beehive_Simulator
{
    public enum BeeState
    {
        Idle,
        FlyingToFlower,
        GatheringNectar,
        ReturningToHive,
        MakingHoney,
        Retired,
    }

}