Browse Source

Gix style for `_manifest` base class

core_refactor
Anton Tarasenko 2 years ago
parent
commit
c8c70836c8
  1. 27
      sources/BaseRealm/_manifest.uc

27
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<AliasSource> > 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<Feature> > features;
/// List of alias sources in this manifest's package.
var public const array< class<AliasSource> > aliasSources;
// List of test cases in this manifest's package.
var public const array< class<TestCase> > testCases;
/// List of features in this manifest's package.
var public const array< class<Feature> > features;
defaultproperties
{
/// List of test cases in this manifest's package.
var public const array< class<TestCase> > testCases;
defaultproperties {
}
Loading…
Cancel
Save