// Felix-Bang:Coords //   へ     /| //  /\7    ∠_/ //  / │   / / // │ Z _,< /   /`ヽ // │     ヽ   /  〉 //  Y     `  /  / // イ● 、 ●  ⊂⊃〈  / // ()  へ    | \〈 //  >ー 、_  ィ  │ // //  / へ   / ノ<| \\ //  ヽ_ノ  (_/  │// //  7       |/ //  >―r ̄ ̄`ー―_ // Describe:背景格子坐标 // Createtime:2018/9/19 using System.Collections; using System.Collections.Generic; using UnityEngine; namespace FBApplication { public class FBCoords { public int X; public int Y; public FBCoords(int x,int y) { X = x; Y = y; } } }