Files
depthsbelow/DepthsBelow/DepthsBelow/Component.cs
T
2012-09-19 12:07:22 +02:00

18 lines
250 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DepthsBelow
{
public class Component
{
public Entity Parent;
public Component(Entity parent)
{
Parent = parent;
}
}
}