20 lines
309 B
C#
20 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TransportGame.Model;
|
|
|
|
namespace Assets.Scripts.Generator
|
|
{
|
|
public class RoadGenerator
|
|
{
|
|
public RoadGenerator()
|
|
{
|
|
}
|
|
|
|
public void Generate(Map map)
|
|
{
|
|
}
|
|
}
|
|
}
|