зачаток

This commit is contained in:
Михаил Капелько
2021-08-30 17:49:55 +03:00
commit c9b8f758af
9 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
function Муром()
{
this.создать = function()
{
this.редактор = new Редактор("редактор");
this.пульт = new Пульт("пульт", "пуск");
};
// Конструктор.
this.создать();
}