-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from team-zomsa/dev-v3.0.2-dev.1
Merge dev at version v3.0.2-dev.1 to main
- Loading branch information
Showing
17 changed files
with
111 additions
and
100 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
namespace Aplib.Core.Agents | ||
{ | ||
/// <summary> | ||
/// Defines an agent that can play a game. | ||
/// Defines a testing agent that can be updated for every frame of the game. | ||
/// </summary> | ||
public interface IAgent : ICompletable | ||
{ | ||
/// <summary> | ||
/// Updates the agent's state and goals. | ||
/// Updates the agent's beliefs, desires, and intentions. | ||
/// </summary> | ||
/// <remarks>This method will get called every frame of the game.</remarks> | ||
/// <remarks>This method will get called for every frame of the game.</remarks> | ||
public void Update(); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
namespace Aplib.Core | ||
{ | ||
/// <summary> | ||
/// Represents an object that contains general information on an instance, such as <see cref="IMetadata"/>. | ||
/// Represents an object that contains general information on an instance, such as <see cref="IMetadata" />. | ||
/// </summary> | ||
public interface IDocumented | ||
{ | ||
/// <summary> | ||
/// Gets the metadata of the instance. | ||
/// Gets the metadata of the instance. This metadata may be useful for debugging or logging. | ||
/// </summary> | ||
/// <remark> | ||
/// This metadata may be useful for debugging or logging. | ||
/// </remark> | ||
public IMetadata Metadata { get; } | ||
} | ||
} |
This file contains 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
Oops, something went wrong.