18 lines
250 B
C#
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;
|
|
}
|
|
}
|
|
}
|