Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
* README: Обновлена секция выпущенных игр.
Browse files Browse the repository at this point in the history
* Common: Обновлена года лицензии.
  • Loading branch information
Leopotam committed Jan 22, 2023
1 parent 0c9085d commit e6448fc
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012 - 2022 [email protected]
Copyright (c) 2012 - 2023 [email protected]

Данное программное обеспечение и сопутствующая документация (далее - Продукт)
выпускается на условиях двойного лицензирования - под собственнической/коммерческой
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LeoECS - Легковесный C# Entity Component System фреймворк
Производительность, нулевые или минимальные аллокации, минимизация использования памяти, отсутствие зависимостей от любого игрового движка - это основные цели данного фреймворка.

> **ВАЖНО!** РАЗРАБОТКА ПРЕКРАЩЕНА, ВОЗМОЖНО ТОЛЬКО ИСПРАВЛЕНИЕ ОБНАРУЖЕННЫХ ОШИБОК. СОСТОЯНИЕ СТАБИЛЬНОЕ, ИЗВЕСТНЫХ ОШИБОК НЕ ОБНАРУЖЕНО. ЗА НОВЫМ ФУНКЦИОНАЛОМ СТОИТ СЛЕДИТЬ В РЕПОЗИТОРИИ [EcsLite](https://github.com/Leopotam/ecslite).
> **ВАЖНО!** РАЗРАБОТКА ДАННОГО ПРОЕКТА ПРЕКРАЩЕНА, РЕПОЗИТОРИЙ БУДЕТ ОТПРАВЛЕН В АРХИВ 22.06.2022. ВМЕСТО НЕГО РЕКОМЕНДУЕТСЯ ИСПОЛЬЗОВАТЬ [EcsLite](https://github.com/Leopotam/ecslite).
> **ВАЖНО!** Не забывайте использовать `DEBUG`-версии билдов для разработки и `RELEASE`-версии билдов для релизов: все внутренние проверки/исключения будут работать только в `DEBUG`-версиях и удалены для увеличения производительности в `RELEASE`-версиях.
Expand Down Expand Up @@ -428,7 +428,7 @@ class EcsStartup {
[![](https://img.youtube.com/vi/FV-0Dq4kcy8/0.jpg)](https://www.youtube.com/watch?v=FV-0Dq4kcy8)


* ["Kangaeru!"](https://kangaeru.space/)
* ["Kangaeru!"](https://play.google.com/store/apps/details?id=com.reoil.kangaeru)

[![](https://img.youtube.com/vi/FcAw6QzzDdA/0.jpg)](https://youtu.be/FcAw6QzzDdA)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "LeoECS",
"description": "LeoECS - легковесный ECS-фреймворк, основанный на структурах. Производительность, нулевые или минимальные аллокации, минимизация использования памяти, отсутствие зависимостей от любого игрового движка - это основные цели данного фреймворка.",
"unity": "2020.3",
"version": "2022.12.22",
"version": "2023.1.22",
"keywords": [
"leoecs",
"ecs",
Expand Down
2 changes: 1 addition & 1 deletion src/EcsComponent.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down
2 changes: 1 addition & 1 deletion src/EcsEntity.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down
2 changes: 1 addition & 1 deletion src/EcsFilter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down
2 changes: 1 addition & 1 deletion src/EcsHelpers.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down
2 changes: 1 addition & 1 deletion src/EcsSystem.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down
2 changes: 1 addition & 1 deletion src/EcsWorld.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ----------------------------------------------------------------------------
// The Proprietary or MIT-Red License
// Copyright (c) 2012-2022 Leopotam <[email protected]>
// Copyright (c) 2012-2023 Leopotam <[email protected]>
// ----------------------------------------------------------------------------

using System;
Expand Down

0 comments on commit e6448fc

Please sign in to comment.