mirror of
https://github.com/Phantop/LADXHD.git
synced 2024-11-01 04:14:22 +00:00
16 lines
353 B
C#
16 lines
353 B
C#
using System;
|
|
|
|
namespace ProjectZ.InGame.GameObjects
|
|
{
|
|
public class GameObjectTemplate
|
|
{
|
|
public Type ObjectType;
|
|
public object[] Parameter;
|
|
|
|
public GameObjectTemplate(Type objectType, object[] parameter)
|
|
{
|
|
ObjectType = objectType;
|
|
Parameter = parameter;
|
|
}
|
|
}
|
|
} |