mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
253 B
C#
10 lines
253 B
C#
using System.Numerics;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.MultiPlayer.MarbleGame.Physics;
|
|
|
|
public class BallSnapshot
|
|
{
|
|
public int Id { get; set; }
|
|
public Vector2 Position { get; set; }
|
|
public Vector2 Velocity { get; set; }
|
|
} |