public void SetPositionToGrid(GridPos gridPos1) { transform.position = gridPos.pos; }
public bool ObjectAtLocation(GridPos pos) { return(BuiltObjects.Any(t => t.gridPos == pos)); }
public bool IsAtPosition(GridPos other) { return(IsAtPosition(other.pos.x, other.pos.y, other.pos.z)); }