Added Collectable
This commit is contained in:
parent
c23cbe44b9
commit
8f8c5b5fb4
3 changed files with 19 additions and 1 deletions
7
Assets/Scripts/Entities/Collectable.cs
Normal file
7
Assets/Scripts/Entities/Collectable.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Collectable : Entity{
|
||||
|
||||
}
|
11
Assets/Scripts/Entities/Collectable.cs.meta
Normal file
11
Assets/Scripts/Entities/Collectable.cs.meta
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a1c36145cdffcde4c83f575b19b85c88
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Entity {
|
||||
public abstract class Entity {
|
||||
EntityObjective referringObjective;
|
||||
GameObject entityPrefab;
|
||||
GameObject instance;
|
||||
|
|
Loading…
Add table
Reference in a new issue