コード例 #1
0
ファイル: Character.cs プロジェクト: Koneke/DeepMagic
		public Character()
		{
			this.Brain = new PlayerBrain(this);
			this.tileMemory = new Dictionary<ILevel, ITile[,]>();
			this.PaperDoll = new PaperDoll();
			this.Attributes = new AttributeCollection();
		}
コード例 #2
0
		public AttributeCollection(AttributeCollection parent = null)
		{
			this.attributes = new Dictionary<string, double>();
			this.parent = parent;
		}