mirror of
https://git.lewd.wtf/PGR/ascnet
synced 2025-12-13 03:34:36 +01:00
multi clearing reward handling
This commit is contained in:
19
AscNet.GameServer/Game/Fight.cs
Normal file
19
AscNet.GameServer/Game/Fight.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using AscNet.Common.MsgPack;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AscNet.GameServer.Game
|
||||
{
|
||||
public class Fight
|
||||
{
|
||||
public PreFightRequest PreFight { get; set; }
|
||||
|
||||
public Fight(PreFightRequest preFight)
|
||||
{
|
||||
PreFight = preFight;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user