mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
24 lines
608 B
C#
24 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Demo.Pacman.ConsoleViewers
|
|
{
|
|
class GhostViewer
|
|
{
|
|
Cosmos.Demo.Pacman.Elements.Ghost ghost;
|
|
ConsoleColor ghostColor;
|
|
ConsoleColor weakColor;
|
|
public GhostViewer(Cosmos.Demo.Pacman.Elements.Ghost ghost, ConsoleColor ghostColor, ConsoleColor weakColor)
|
|
{
|
|
this.ghost = ghost;
|
|
this.ghostColor = ghostColor;
|
|
this.weakColor = weakColor;
|
|
}
|
|
|
|
#region accessors
|
|
|
|
#endregion
|
|
}
|
|
}
|