Files
reallife-gamemode/ReallifeGamemode.Server.Core.API/IColShape.cs
2020-03-01 18:45:03 +01:00

15 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Core.API
{
public interface IColShape : IEntity
{
delegate void ColShapeEvent(IColShape colShape, IEntity entity);
event ColShapeEvent OnEntityEnter;
event ColShapeEvent OnEntityExit;
}
}