mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-09-04 20:57:37 +00:00
12 lines
222 B
C#
12 lines
222 B
C#
|
using Microsoft.Xna.Framework;
|
|||
|
|
|||
|
namespace ProjectZ.InGame.GameObjects.Base.Components.AI
|
|||
|
{
|
|||
|
class AiTrigger
|
|||
|
{
|
|||
|
public virtual void OnInit() { }
|
|||
|
|
|||
|
public virtual void Update() { }
|
|||
|
}
|
|||
|
}
|