A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
412 B

  1. using Microsoft.Xna.Framework;
  2. using Microsoft.Xna.Framework.Graphics;
  3. using System;
  4. using System.Collections.Generic;
  5. namespace SemiColinGames {
  6. public sealed class TreeWorld : IWorld {
  7. public TreeWorld() {
  8. }
  9. ~TreeWorld() {
  10. Dispose();
  11. }
  12. public void Dispose() {
  13. GC.SuppressFinalize(this);
  14. }
  15. public void Update(float modelTime, History<Input> input) {
  16. }
  17. }
  18. }