IGraphicElement2D.cs 330 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using MathNet.Numerics.LinearAlgebra.Single;
  8. namespace bbiwarg.Graphics.GraphicElements2D
  9. {
  10. interface IGraphicElement2D
  11. {
  12. void draw(short[] textureData, int width);
  13. }
  14. }