2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Mind.Components
|
2020-08-21 17:43:27 +02:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed class VisitingMindComponent : Component
|
|
|
|
|
{
|
2023-03-26 11:31:13 -07:00
|
|
|
[ViewVariables]
|
|
|
|
|
public Mind Mind { get; set; } = default!;
|
2020-08-21 17:43:27 +02:00
|
|
|
}
|
2021-03-31 14:17:22 -07:00
|
|
|
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class MindUnvisitedMessage : EntityEventArgs
|
2021-03-31 14:17:22 -07:00
|
|
|
{
|
|
|
|
|
}
|
2020-08-21 17:43:27 +02:00
|
|
|
}
|