-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
33 lines (29 loc) · 1.21 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Data.SqlClient;
using System.Threading.Tasks;
using Dapper;
namespace NuzlockeHelper
{
class Program
{
static void Main()
{
/*
* The Nuzlocke Helper should take a state of current Nuzlocke challenge and reveal useful information to the player.
* The Nuzlocke Helper should also take input from user about the current state of the game to change the information displayed.
*
* Features/information displayed should include:
* - Max level your Pokémon can have in this part of the game.
* - What routes the player has locked.
* - A list of rules you can print out on the screen and add to or remove from.
* - A way to store this information between sessions in a database (low priority).
*/
//StoreData database = new(@"Data Source=(localdb)\MSSQLLocalDB;
// Initial Catalog=NuzlockeHelperStorage;
// Integrated Security=True;");
SClassReference.Instance = new SClassReference();
var game = new Game();
game.Run().Wait();
}
}
}