From 3a7daf0856d0b5dea4389501b9559d01cc3fff2d Mon Sep 17 00:00:00 2001 From: milimoe Date: Thu, 7 Nov 2024 01:14:09 +0800 Subject: [PATCH] 1 --- Library/Main.cs | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Library/Main.cs b/Library/Main.cs index 2294dea..8806470 100644 --- a/Library/Main.cs +++ b/Library/Main.cs @@ -12,14 +12,20 @@ ItemModule im = new(); im.Load(); FunGameSimulation.InitCharacter(); -//FunGameSimulation.StartGame(true, false, true); +FunGameSimulation.StartGame(true, false, true); -foreach (Skill s in FunGameSimulation.Magics) -{ - Skill s2 = s.Copy(); - s2.Level++; - Console.WriteLine(s2); -} +//Character c = FunGameSimulation.Characters[1].Copy(); +//foreach (Skill s in FunGameSimulation.Magics) +//{ +// Skill s2 = s.Copy(); +// s2.Character = c; +// Console.WriteLine(s2); +// s2.Level++; +// Console.WriteLine(s2); +// c.Level = 60; +// s2.Level = 8; +// Console.WriteLine(s2); +//} //Stopwatch stopwatch = new(); //stopwatch.Start();