17 lines
242 B
C#
17 lines
242 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class TempTerrain_Class
|
|
{
|
|
public Terrain terrain;
|
|
|
|
public Vector2 tile;
|
|
|
|
public TempTerrain_Class(Terrain terrain, Vector2 tile)
|
|
{
|
|
this.terrain = terrain;
|
|
this.tile = tile;
|
|
}
|
|
}
|