LADXHD/InGame/GameObjects/GameObjectTemplate.cs

16 lines
353 B
C#
Raw Normal View History

2023-12-14 22:21:22 +00:00
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;
}
}
}