summaryrefslogtreecommitdiff
path: root/MorgSimulator/Morg.cs
blob: ba91564ad6dda68303ebef2e116c25af4499e83a (plain) (blame)
1
2
3
4
5
6
7
8
9
using MorgSimulator.Framework;

namespace MorgSimulator
{
    public class Morg(int id, (int x, int y) location, (int x, int y) direction)
        : Entity(id, location, direction)
    {
    }
}