added IRenderContext

This commit is contained in:
Dani The Skunk 2022-09-14 17:52:55 +02:00
parent 89d9735203
commit fd46e3196c
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package com.danitheskunk.skunkworks;
public interface IRenderContext {
void drawRectangle(Recti rect, Color color);
}