﻿using UnityEngine;
using System.Collections;

namespace Nostalgia.Example
{
	[AddScriptMenu("Example/Ground")]
	public sealed class GroundTile : TileComponent
	{
		public AudioClip footStepClip;
		public GameObject spawnObject;
	}
}
