Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using OpenTK.Mathematics;
- namespace EduEngine.Graphics.Interfaces;
- public interface IDebugGuiService : IDisposable
- {
- void Initialize(int width, int height);
- void Update(float deltaTime);
- void Render();
- void OnResize(int width, int height);
- void OnTextInput(char unicode);
- void OnMouseScroll(Vector2 offset);
- }
Advertisement
Add Comment
Please, Sign In to add comment