I started c# a few days ago and tried to use the openTk libary.
I installed it via commandline (using vsCode: dotnet add package OpenTK --version 4.2.0) and it seemed like it worked. But in the internet, when searching for examples, they always use the Game :: GameWindow class. When I type that, im getting an error. Can you help me? Heres my code:
using System;
using OpenTK;
using OpenTK.Graphics.OpenGL4;
namespace tk_test1
{
public class Game : GameWindow
{
}
}