﻿using UnityEngine;
using System.Collections;

public enum wallType {neutral, deadly, orange, green}

public class wallBehaviour : MonoBehaviour {

	public wallType type;

	// Use this for initialization
	void Start () {
	
	}
	
	// Update is called once per frame
	void Update () {
	
	}
}
