Graphic Rendering System 1.0
A Java-based graphic rendering system implementing various design patterns
Loading...
Searching...
No Matches
RendererFactory.java
Go to the documentation of this file.
1package com.example.graphics.factory;
2
3import com.example.graphics.render.Renderer;
4
9public interface RendererFactory {
16 Renderer createRenderer(int width, int height);
17}
Renderer createRenderer(int width, int height)