2018-04-21 12:22:17 +02:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2018-04-21 15:18:53 +02:00
|
|
|
|
public abstract class Objective {
|
|
|
|
|
protected Room objectiveCaller;
|
2018-04-21 12:22:17 +02:00
|
|
|
|
|
2018-04-21 15:18:53 +02:00
|
|
|
|
// Constructor
|
|
|
|
|
public Objective(Room objectiveCaller)
|
|
|
|
|
{
|
|
|
|
|
this.objectiveCaller = objectiveCaller;
|
2018-04-21 12:22:17 +02:00
|
|
|
|
}
|
2018-04-21 15:18:53 +02:00
|
|
|
|
|
|
|
|
|
// Activates the objective to start progresstracking
|
|
|
|
|
public virtual void Activate(){}
|
2018-04-21 12:22:17 +02:00
|
|
|
|
}
|