You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
353 B
15 lines
353 B
1 month ago
|
using Entitas;
|
||
|
using Entitas.CodeGeneration.Attributes;
|
||
|
|
||
|
namespace CoreGame.Render
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 这个很重,直接销毁实体,无法复活的东西
|
||
|
/// </summary>
|
||
|
// [Combat, Event(EventTarget.Self), Cleanup(CleanupMode.DestroyEntity)]
|
||
|
[Combat]
|
||
|
public class DestroyEntComponent : IComponent
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|