Удален префикс virtual

This commit is contained in:
Данияр Аглиуллов 2022-10-18 02:45:11 +04:00
parent 396cc84c61
commit cda14a5f01

View File

@ -31,7 +31,7 @@ namespace AirBomber
/// </summary>
/// <param name="type">тип</param>
/// <returns>Успешно ли проведена операция</returns>
public virtual bool AddTypeOfEntity(T type)
public bool AddTypeOfEntity(T type)
{
if (NumTypesOfEntity >= typesOfEntity.Length)
{
@ -45,7 +45,7 @@ namespace AirBomber
/// </summary>
/// <param name="type">тип</param>
/// <returns>Успешно ли проведена операция</returns>
public virtual bool AddTypeOfEngines(U type)
public bool AddTypeOfEngines(U type)
{
if (NumTypesOfEngines >= typesOfEngines.Length)
{