diff --git a/sources/BaseRealm/_manifest.uc b/sources/BaseRealm/_manifest.uc index d5dd829..e9c781d 100644 --- a/sources/BaseRealm/_manifest.uc +++ b/sources/BaseRealm/_manifest.uc @@ -1,7 +1,8 @@ /** - * `Manifest` is meant to describe contents of the Acedia's package. - * This is the base class, every package's `Manifest` must directly extend it. - * Copyright 2020 Anton Tarasenko + * Author: dkanus + * Home repo: https://www.insultplayers.ru/git/AcediaFramework/AcediaCore + * License: GPL + * Copyright 2020-2023 Anton Tarasenko *------------------------------------------------------------------------------ * This file is part of Acedia. * @@ -21,15 +22,19 @@ class _manifest extends Object abstract; -// List of alias sources in this manifest's package. -var public const array< class > aliasSources; +//! `Manifest` is meant to describe contents of the Acedia's package. +//! +//! It contains description of all resources inside the package that AcediaCore can recognize. +//! This is the base class, every package's `Manifest` must directly extend it. -// List of features in this manifest's package. -var public const array< class > features; +/// List of alias sources in this manifest's package. +var public const array< class > aliasSources; -// List of test cases in this manifest's package. -var public const array< class > testCases; +/// List of features in this manifest's package. +var public const array< class > features; -defaultproperties -{ +/// List of test cases in this manifest's package. +var public const array< class > testCases; + +defaultproperties { } \ No newline at end of file