コード例 #1
0
ファイル: Component.cs プロジェクト: DmKraft/TwoD00m_v2
 public override void draw(float transparent)
 {
     Sprites.Draw2D(texture, screenPosition, dSize, Color.White * transparent);
 }
コード例 #2
0
ファイル: Component.cs プロジェクト: DmKraft/TwoD00m_v2
 public virtual void draw(float transparent)
 {
     Sprites.Draw2D(texture, screenPosition, size, Color.White * transparent);
 }