using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using FDK.メディア; namespace SST.ステージ.演奏 { class レーンフレーム : FDK.Activity { public float 左端位置dpx { get; set; } = 400f; public float 高さdpx { get; set; } = 1080f; public レーンフレーム() { this.子リスト.Add( this._レーンフレーム画像 = new 画像( @"$(Static)\images\レーン.png" ) ); } public void 進行描画する( デバイスリソース dr ) { this._レーンフレーム画像.描画する( dr, 座標.レーンフレーム左端のX座標dpx, 0f ); } private FDK.メディア.画像 _レーンフレーム画像 = null; } }