wu
2025-04-11 f4631f8b19f30fb6c334aefe2bceab52e2e9a63c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ng.Algorithm.Layouts;
 
public class Piece {
    public int width;
    public int height;
    public double w;
    public double h;
    public Object Source;
    public LayoutMode Mode;
    public enum LayoutMode{
        Heng,
        Zhong,
        Both
    }
}