27 lines
365 B
C#
27 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Console_Games {
|
|
class Tetris_Draw {
|
|
public void drawGrid() {
|
|
|
|
}
|
|
|
|
public void drawStats() {
|
|
|
|
}
|
|
|
|
public void updateGrid() {
|
|
|
|
}
|
|
|
|
public void updateStats() {
|
|
|
|
}
|
|
|
|
}
|
|
}
|