first commit

This commit is contained in:
2026-06-05 11:45:04 +03:00
commit b457544071
29 changed files with 1725 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
#include "IBlock.h"
IBlock::IBlock(Point position)
:
Figure(position)
{
m_Body =
{
{
Point(1,0),
Point(1,1),
Point(1,2),
Point(1,3)
},
{
Point(0,2),
Point(1,2),
Point(2,2),
Point(3,2)
},
{
Point(2,0),
Point(2,1),
Point(2,2),
Point(2,3)
},
{
Point(0,1),
Point(1,1),
Point(2,1),
Point(3,1)
}
};
}