DevLop games
DevLop games
CC#
Created by DevLop games on 6/27/2024 in #help
Need help with video processing
I wanna display a video in opentk. Anyone know how to do that?
2 replies
CC#
Created by DevLop games on 6/25/2024 in #help
I need to render text in my game with opentk
I been trying to find a way to render text in opentk. I'm mainly looking for a way to render text and fit it in one namespace to be used by other namespaces. Anyone know a way I can do this?
8 replies
CC#
Created by DevLop games on 6/24/2024 in #help
✅ Namespace error
The type or namespace name 'Game' does not exist in the namespace 'Rhythm_Flow' (are you missing an assembly reference?)
using System;
using OpenTK.Windowing.GraphicsLibraryFramework;
using Rhythm_Flow.Game;

namespace Rhythm_Flow
{
public class Program
{
static void Main(string[] args)
{
using (Game game = new Game())
{
game.Run();
}
}
}
}
using System;
using OpenTK.Windowing.GraphicsLibraryFramework;
using Rhythm_Flow.Game;

namespace Rhythm_Flow
{
public class Program
{
static void Main(string[] args)
{
using (Game game = new Game())
{
game.Run();
}
}
}
}
Anyone know why i am getting this error?
63 replies