This repository has been archived on 2025-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tetri5-backend/TetrisClone.WebApi/Model/Piece.cs

15 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TetrisClone.WebApi.Model
{
public class Piece
{
public int X { get; set; }
public int Y { get; set; }
public PieceType Type { get; set; }
}
}