お前ら頃し合いしてください

このエントリーをはてなブックマークに追加
62デフォルトの名無しさん
>25
んじゃモナで
MonaPlant.cs
---
using System;
using System.Collections;
using System.Drawing;
using System.IO;

[assembly: OrganismClass("mona.monaPlant")]
[assembly: AuthorInformation("mona", "[email protected]")]

namespace mona
{
[MaximumEnergyPoints(10)]
[MatureSize(26)]
[SeedSpreadDistanceAttribute(100)]
public class monaPlant : Plant
{
public override void SerializePlant(MemoryStream m)
{
}
public override void DeserializePlant(MemoryStream m)
{
}
}
}
---