14 lines
228 B
C#
14 lines
228 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class footStepSurfaceSystem : MonoBehaviour
|
|
{
|
|
public string surfaceName;
|
|
|
|
public string getSurfaceName ()
|
|
{
|
|
return surfaceName;
|
|
}
|
|
}
|