コード例 #1
0
ファイル: Element.cs プロジェクト: save-buffer/Engine
 public Element(string Name)
 {
     Belongings = new List <Updatable>();
     Position   = new PointF(0, 0);
     this.Name  = Name;
     Game.AddElement(this);
 }