baseline: OpenMU upstream b5a0961 (fresh source)
This commit is contained in:
15
src/GameLogic/WalkingStep.cs
Normal file
15
src/GameLogic/WalkingStep.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
// <copyright file="WalkingStep.cs" company="MUnique">
|
||||
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
||||
// </copyright>
|
||||
|
||||
namespace MUnique.OpenMU.GameLogic;
|
||||
|
||||
using MUnique.OpenMU.Pathfinding;
|
||||
|
||||
/// <summary>
|
||||
/// A walking step information.
|
||||
/// </summary>
|
||||
/// <param name="From">The point from where the step originates.</param>
|
||||
/// <param name="To">The point where the step targets.</param>
|
||||
/// <param name="Direction">The direction.</param>
|
||||
public record struct WalkingStep(Point From, Point To, Direction Direction);
|
||||
Reference in New Issue
Block a user