21 lines
308 B
C#
21 lines
308 B
C#
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
namespace Assets.Scripts.Road.Chunks
|
|
{
|
|
public class Grid : MonoBehaviour
|
|
{
|
|
|
|
// Use this for initialization
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |