theUpsider

IDebugGuiService

Jul 13th, 2025
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | Gaming | 0 0
  1. using OpenTK.Mathematics;
  2.  
  3. namespace EduEngine.Graphics.Interfaces;
  4.  
  5. public interface IDebugGuiService : IDisposable
  6. {
  7.     void Initialize(int width, int height);
  8.     void Update(float deltaTime);
  9.     void Render();
  10.     void OnResize(int width, int height);
  11.     void OnTextInput(char unicode);
  12.     void OnMouseScroll(Vector2 offset);
  13. }
Tags: eduengine
Advertisement
Add Comment
Please, Sign In to add comment