15 lines
417 B
C#
15 lines
417 B
C#
using Microsoft.Xna.Framework;
|
|
using System;
|
|
using ZoFo.GameCore.GameManagers.CollisionManager;
|
|
using ZoFo.GameCore.ZoFo_graphics;
|
|
|
|
namespace ZoFo.GameCore.GameObjects.MapObjects.StopObjects;
|
|
|
|
public class StopObject : MapObject
|
|
{
|
|
CollisionComponent collisionComponent;
|
|
|
|
protected StopObject(Vector2 position, Vector2 size, Rectangle sourceRectangle) : base(position, size, sourceRectangle)
|
|
{
|
|
}
|
|
}
|