15 lines
231 B
C#
15 lines
231 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenRa.Game
|
|
{
|
|
class Truck : Unit
|
|
{
|
|
public Truck( int2 cell, int palette )
|
|
: base( "truk", cell, palette, float2.Zero )
|
|
{
|
|
}
|
|
}
|
|
}
|