1
0
Fork 0

Added Collectable

This commit is contained in:
ALoTron 2018-04-21 16:20:38 +02:00
parent c23cbe44b9
commit 8f8c5b5fb4
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Collectable : Entity{
}

View file

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: a1c36145cdffcde4c83f575b19b85c88
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -2,7 +2,7 @@
using System.Collections.Generic;
using UnityEngine;
public class Entity {
public abstract class Entity {
EntityObjective referringObjective;
GameObject entityPrefab;
GameObject instance;