CustomiseState.cs 680 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Xna.Framework;
  7. using Tutorial030.Models;
  8. namespace Tutorial030.States
  9. {
  10. public class CustomiseState : State
  11. {
  12. public CustomiseState(GameModel gameModel)
  13. : base(gameModel)
  14. {
  15. }
  16. public override void LoadContent()
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public override void Update(GameTime gameTime)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. public override void Draw(GameTime gameTime)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. }
  29. }