mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
Guess demo fixes.
This commit is contained in:
parent
5cf4dbd990
commit
04dd4e26ef
1 changed files with 1 additions and 6 deletions
|
|
@ -1,12 +1,7 @@
|
|||
using System;
|
||||
|
||||
using Cosmos.Debug.Kernel;
|
||||
using Sys = Cosmos.System;
|
||||
|
||||
/*
|
||||
* Beware Demo Kernels are not recompiled when its dependencies changes!
|
||||
* To force recompilation right click on on the Cosmos icon of the demo solution and do "Build".
|
||||
*/
|
||||
namespace Guess
|
||||
{
|
||||
public class GuessOS : Sys.Kernel
|
||||
|
|
@ -20,7 +15,7 @@ namespace Guess
|
|||
mRandom = new Random();
|
||||
|
||||
mCount = 0;
|
||||
mNumber = mRandom.Next(1, 100);
|
||||
mNumber = mRandom.Next(1, 101);
|
||||
|
||||
Console.Clear();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue