Files
CypherCore/Source/Game/DataStorage/Structs/MiscStructs.cs
T
2024-03-19 17:21:32 -04:00

18 lines
483 B
C#

// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
namespace Game.DataStorage
{
public class TaxiPathBySourceAndDestination
{
public TaxiPathBySourceAndDestination(uint _id, uint _price)
{
Id = _id;
price = _price;
}
public uint Id;
public uint price;
}
}