From 4fc1be09f9085182630a5a8a3d299d96a2f4465e Mon Sep 17 00:00:00 2001 From: ALoTron <34157676+ALoTron@users.noreply.github.com> Date: Sat, 21 Apr 2018 16:23:37 +0200 Subject: [PATCH] Fixed Constructor-error in Collectable --- Assets/Scripts/Entities/Collectable.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Entities/Collectable.cs b/Assets/Scripts/Entities/Collectable.cs index 4e41d0e..4194668 100644 --- a/Assets/Scripts/Entities/Collectable.cs +++ b/Assets/Scripts/Entities/Collectable.cs @@ -3,5 +3,6 @@ using System.Collections.Generic; using UnityEngine; public class Collectable : Entity{ - + + public Collectable (EntityObjective referringObjective, GameObject entityPrefab) : base(referringObjective, entityPrefab) {} }