Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using silly.examples
- namespace silly.source
- {
- class Program
- {
- public static void Main(string[] args)
- {
- Scene scene = new Scene(80,24);
- char[,] graphics = new char[,]
- {
- {'=','='}
- {'=','='}
- };
- Entity entity = new Entity(graphics);
- scene.AddEntity(entity);
- Game.Start(scene,80,24);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement