Begin script abstraction
This commit is contained in:
14
ReallifeGamemode.Server.Core.API/IColShape.cs
Normal file
14
ReallifeGamemode.Server.Core.API/IColShape.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user