예제 #1
0
파일: Table.java 프로젝트: ngdelamo/libgdx
 /** Padding at the top edge of the table. */
 public Table padTop(float padTop) {
   layout.padTop(padTop);
   return this;
 }
예제 #2
0
파일: Table.java 프로젝트: ngdelamo/libgdx
 /** Padding at the top edge of the table. */
 public Table padTop(Value padTop) {
   layout.padTop(padTop);
   return this;
 }