home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2006 December
/
PCWDEC06.iso
/
Software
/
HandsOn
/
WindowsGame1
/
Program.cs
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-09-07
|
358 b
|
20 lines
using System;
namespace StopTheLogo
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
static void Main(string[] args)
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}