mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 12:50:19 +00:00
18 lines
412 B
C#
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);
|
|
|
|
}
|
|
}
|
|
}
|