ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DDrawable.java 457B

1234567891011121314151617181920
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package org.openzen.drawablegui;
  7. import org.openzen.drawablegui.draw.DDrawTarget;
  8. /**
  9. *
  10. * @author Hoofdgebruiker
  11. */
  12. public interface DDrawable {
  13. void draw(DDrawTarget target, int z, DTransform2D transform);
  14. float getNominalWidth();
  15. float getNominalHeight();
  16. }