Cosmos/source/Cosmos.Demo.PacMan/Intermissions/DemoIntermission.cs
2008-08-20 15:23:41 +00:00

18 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Demo.Pacman.Elements;
namespace Cosmos.Demo.Pacman.Intermissions
{
public class DemoIntermission
{
public void Display()
{
Elements.Pacman pacMan = new Elements.Pacman('c', 100);
//Elements. = new Elements.Pacman('c', 100);
}
}
}