Mini Fix for Exception

This commit is contained in:
Antoine H 2020-12-05 20:28:33 +01:00
parent 4355551189
commit a02db5aba5
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using System; //Exceptions
//Represents consumable : sprite and informations
public class Consumable //: MonoBehaviour

View file

@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System; //Exceptions
[RequireComponent(typeof(Rigidbody))]
[RequireComponent(typeof(Animator))]