This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class Gene | |
| { | |
| /// <summary> | |
| /// Абстрактный класс гена и инициализация на юните с определенным геном | |
| /// </summary> | |
| public GeneSO geneSO; | |
| protected Stats Stats; | |
| public Action OnAttach; | |
| public Action OnDetach; |