First commit

This commit is contained in:
Regalis
2015-05-25 01:04:03 +03:00
commit fadb89ae9e
320 changed files with 32186 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System.Xml.Linq;
namespace Subsurface.Items.Components
{
class Ladder : ItemComponent
{
public Ladder(Item item, XElement element)
: base(item, element)
{
}
public override bool Pick(Character picker = null)
{
if (picker == null) return false;
picker.animController.anim = AnimController.Animation.Climbing;
//picker.SelectedConstruction = item;
return true;
}
}
}