Im not quite sure what this means.
"The application was terminated by a signal: SIGHUP"
Information about what kind of system I am using
I am using Ubuntu 12.10.
My IDE is MonoDevelop.
Here is my code...
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections.Generic;
using System.Configuration;
using OpenTK;
using OpenTK.Audio;
using OpenTK.Compatibility;
using OpenTK.Compatibility.Properties;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
using OpenTK.Input;
using OpenTK.Math;
using OpenTK.Platform.X11;
using OpenTK.Properties;
namespace Test
{
public class Game : GameWindow
{
public Game() : base(480,480)
{
}
public Game (int width, int height, string title) : base(width,height,new GraphicsMode(),title)
{
}
protected override void onload (EventArgs e)
{
base.onload (e);
}
protected override void OnUpdateFrame (FrameEventArgs e)
{
base.OnUpdateFrame (e);
}
protected override void OnRenderFrame (FrameEventArgs e)
{
base.OnRenderFrame (e);
}
protected override void onunload (EventArgs e)
{
base.onunload (e);
}
}
public class MainGame{
public static void Main ()
{
using(Game game = new Game()){
game.Run();
}
}
}
}

New Topic/Question
Reply




MultiQuote




|