-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented most of new experimental architecture
- Loading branch information
Showing
49 changed files
with
1,514 additions
and
1,267 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace TDRS | ||
{ | ||
/// <summary> | ||
/// An agent or relationship in the social engine. | ||
/// </summary> | ||
public interface ISocialEntity | ||
{ | ||
/// <summary> | ||
/// A reference to the manager that owns this entity. | ||
/// </summary> | ||
public SocialEngine Engine { get; } | ||
|
||
/// <summary> | ||
/// The collection of traits associated with this entity. | ||
/// </summary> | ||
public TraitManager Traits { get; } | ||
|
||
/// <summary> | ||
/// A collection of stats associated with this entity. | ||
/// </summary> | ||
public StatManager Stats { get; } | ||
|
||
/// <summary> | ||
/// Manages all effects applied to this entity. | ||
/// </summary> | ||
public EffectManager Effects { get; } | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...y.tdrs/Runtime/SocialRuleInstance.cs.meta → ...hijbey.tdrs/Runtime/ISocialEntity.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.