mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-04-20 05:24:59 +00:00
16 lines
413 B
C#
16 lines
413 B
C#
using Milimoe.FunGame.Core.Interface.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Entity
|
|
{
|
|
public class InteractionPoint : BaseEntity
|
|
{
|
|
public int CustomValue { get; set; } = 0;
|
|
public string Description { get; set; } = "";
|
|
|
|
public override bool Equals(IBaseEntity? other)
|
|
{
|
|
return other is InteractionPoint && other.GetIdName() == GetIdName();
|
|
}
|
|
}
|
|
}
|