Exemplo n.º 1
0
        protected override void DefineActions()
        {
            A = new DrinkAction(Actions);
            A = new EatAction(Actions);
            A = new ShowerAction(Actions);
            A = new ToiletAction(Actions);
            A = new SleepAction(Actions);
            A = new PhysicalExerciseAction(Actions);

            A = new WorkAction(Actions);
            A = new ReadAction(Actions);

            A = new IdleAction(Actions);
        }
Exemplo n.º 2
0
 DrinkAction(DrinkAction other) : base(other)
 {
 }