mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-07-12 21:16:11 +00:00
14 lines
355 B
C#
14 lines
355 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace ProjectZ.InGame.GameObjects.Base
|
|
{
|
|
public class GameObjectFollower : GameObject
|
|
{
|
|
public GameObjectFollower(string spriteId) : base(spriteId) { }
|
|
|
|
public GameObjectFollower(Map.Map map) : base(map) { }
|
|
|
|
public virtual void SetPosition(Vector2 position) { }
|
|
}
|
|
}
|