From a9f01b22bbddd2127a7448decdb5eaebb1f0d703 Mon Sep 17 00:00:00 2001 From: milimoe Date: Tue, 21 Jan 2025 01:35:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=95=86=E5=BA=97=E5=92=8C?= =?UTF-8?q?=E5=95=86=E5=93=81=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/Solutions/Activity.cs | 15 --------------- Library/Tests/WebSocketTest.cs | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/Library/Solutions/Activity.cs b/Library/Solutions/Activity.cs index 5ab0048..a946cae 100644 --- a/Library/Solutions/Activity.cs +++ b/Library/Solutions/Activity.cs @@ -3,21 +3,6 @@ using Milimoe.FunGame.Core.Library.Constant; namespace Milimoe.FunGame.Testing.Solutions { - public enum ActivityState - { - Future, - Upcoming, - InProgress, - Ended - } - - public enum RedeemResult - { - Success, - StockNotEnough, - PointsNotEnough - } - public class Activity(long id, string name, DateTime startTime, DateTime endTime) { public long Id { get; set; } = id; diff --git a/Library/Tests/WebSocketTest.cs b/Library/Tests/WebSocketTest.cs index 94954ef..d91acd9 100644 --- a/Library/Tests/WebSocketTest.cs +++ b/Library/Tests/WebSocketTest.cs @@ -5,7 +5,7 @@ using Milimoe.FunGame.Core.Controller; using Milimoe.FunGame.Core.Entity; using Milimoe.FunGame.Core.Library.Common.Network; using Milimoe.FunGame.Core.Library.Constant; -using Oshima.FunGame.OshimaModules; +using Oshima.Core.Constant; namespace Milimoe.FunGame.Testing.Tests {