OSDN Git Service

22866f8c3713afa0e929fda7aba4c145c5396b6c
[strokestylet/CsWin10Desktop3.git] / StrokeStyleT / ステージ / 演奏 / レーンフレーム.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Diagnostics;
4 using System.Linq;
5 using FDK.メディア;
6
7 namespace SST.ステージ.演奏
8 {
9         class レーンフレーム : FDK.Activity
10         {
11                 public float 左端位置dpx { get; set; } = 400f;
12
13                 public float 高さdpx { get; set; } = 1080f;
14
15                 public レーンフレーム()
16                 {
17                         this.子リスト.Add( this.レーンフレーム画像 = new 画像( @"$(Static)\images\レーン.png" ) );
18                 }
19
20                 public void 進行描画する( デバイスリソース dr )
21                 {
22                         this.レーンフレーム画像.描画する( dr, 座標.レーンフレーム左端のX座標dpx, 0f );
23                 }
24
25                 protected readonly FDK.メディア.画像 レーンフレーム画像;
26         }
27 }