Browse Source

Fix comment for `Command` class

pull/8/head
Anton Tarasenko 2 years ago
parent
commit
9f282c4f66
  1. 4
      sources/Commands/Command.uc

4
sources/Commands/Command.uc

@ -1,9 +1,9 @@
/** /**
* This class is meant to represent a command type: to create new command * This class is meant to represent a command type: to create new command
* one should extend it, then simply define required sub-commands/options and * one should extend it, then simply define required sub-commands/options and
* parameters in `BuildData()` and overload `Execute()` / `ExecuteFor()` * parameters in `BuildData()` and overload `Executed()` / `ExecutedFor()`
* to perform required actions when command is executed by a player. * to perform required actions when command is executed by a player.
* `Execute()` is called first, whenever command is executed and * `Executed()` is called first, whenever command is executed and
* `ExecuteFor()` is called only for targeted commands, once for each * `ExecuteFor()` is called only for targeted commands, once for each
* targeted player. * targeted player.
* Copyright 2021 - 2022 Anton Tarasenko * Copyright 2021 - 2022 Anton Tarasenko

Loading…
Cancel
Save