Files
ft/Client/Assets/Scripts/EventCubeMelt/Shapes/ShapePlacement.cs
2026-06-29 21:18:33 +08:00

28 lines
566 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace EventCubeMelt.ShapePlacement
{
public class ShapePlacement
{
public int Id { get; set; }
//-
public int Row { get; set; }
//-
public int Col { get; set; }
//-
public int[,] Shape;
//-
public int Weight;
//- 复杂度
public float Complexity;
public override string ToString()
{
return $"Id = {Id} 放置于({Row},{Col})Complexity: {Complexity:F3}";
}
}
}