18 lines
266 B
C#
18 lines
266 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class ChunkCoord
|
|
{
|
|
public ChunkCoord(int x, int z)
|
|
{
|
|
this.x = x;
|
|
this.z = z;
|
|
}
|
|
|
|
public int x;
|
|
public int z;
|
|
}
|