mirror of
https://github.com/Shiewk/Widgets.git
synced 2026-04-28 11:34:17 +02:00
10 lines
176 B
Java
10 lines
176 B
Java
package de.shiewk.widgets;
|
|
|
|
public interface Dimensionable {
|
|
int width();
|
|
int height();
|
|
double getX(int mx);
|
|
double getY(int my);
|
|
float getScaleFactor();
|
|
}
|