Advertisement
EdmundC

Untitled

Jul 12th, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2. using silly.examples
  3.  
  4. namespace silly.source
  5. {
  6. class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. Scene scene = new Scene(80,24);
  11.  
  12. char[,] graphics = new char[,]
  13. {
  14. {'=','='}
  15. {'=','='}
  16. };
  17. Entity entity = new Entity(graphics);
  18. scene.AddEntity(entity);
  19.  
  20. Game.Start(scene,80,24);
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement