Example #1
0
 // Use this for initialization
 void Start()
 {
     _actorEmployee   = GetComponent <ActorEmployee>();
     _employeeManager = EmployeeManager.Instance;
 }
Example #2
0
 public ConcreteState(ActorEmployee baseActorEmployee)
 {
     BaseActorEmployee = baseActorEmployee;
 }
Example #3
0
 public IdleState(ActorEmployee baseActorEmployee) : base(baseActorEmployee)
 {
 }
Example #4
0
 public WaitingState(ActorEmployee baseActorEmployee) : base(baseActorEmployee)
 {
 }
Example #5
0
 public SearchingState(ActorEmployee baseActorEmployee) : base(baseActorEmployee)
 {
 }
Example #6
0
 public bool AssignProjectToEmployee(Project project, ActorEmployee actorEmployee)
 {
     actorEmployee.AssignProject(project);
     return(true);
 }