19 lines
254 B
C#
19 lines
254 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TetrisClone.WebApi.Model
|
|
{
|
|
public enum PieceType
|
|
{
|
|
I,
|
|
J,
|
|
L,
|
|
O,
|
|
S,
|
|
T,
|
|
Z
|
|
}
|
|
}
|