Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 6, 2024
1 parent cd6bf21 commit a828216
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Neoa/Encounters.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
using System;
namespace{
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Neoa
{
class Encounters
{
static Random rand = new Random();
Expand Down
2 changes: 1 addition & 1 deletion Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void Main(string[] args)
{
if(!Directory.Exists("saves"))
{
Directory.CreateDirectory("saves")
Directory.CreateDirectory("saves");
}
Console.ForegroundColor = ConsoleColor.Red;
Start();
Expand Down

0 comments on commit a828216

Please sign in to comment.