Browse Subversion Repository
Contents of /ShogiNextMove/MoveKomaInfo.vb
Parent Directory
| Revision Log
| 1 |
Imports System |
| 2 |
Imports System.Drawing |
| 3 |
Imports ShogiNextMove.Board |
| 4 |
|
| 5 |
Namespace Control.Board |
| 6 |
|
| 7 |
Public Class MoveKomaInfo |
| 8 |
Public Property IsNowMove() As Boolean |
| 9 |
|
| 10 |
Public Property IsNowDrag() As Boolean |
| 11 |
|
| 12 |
Public Property IsMouseDown() As Boolean |
| 13 |
|
| 14 |
Public Property IsValidPosition() As Boolean |
| 15 |
|
| 16 |
Public Property IsMovingInvalidate() As Boolean |
| 17 |
|
| 18 |
Public Property MouseDownPt() As Point |
| 19 |
|
| 20 |
Public Property From As KomaLocation |
| 21 |
|
| 22 |
Public Property MovingKoma() As Byte |
| 23 |
|
| 24 |
Public Property MovingKomaPrevRect() As Rectangle |
| 25 |
|
| 26 |
Public Property MovingKomaRect() As Rectangle |
| 27 |
|
| 28 |
Public Property InvalidRect() As Rectangle |
| 29 |
|
| 30 |
Public Sub New() |
| 31 |
Me.IsNowMove = False |
| 32 |
Me.IsNowDrag = False |
| 33 |
Me.IsMouseDown = False |
| 34 |
Me.IsValidPosition = False |
| 35 |
Me.IsMovingInvalidate = False |
| 36 |
End Sub |
| 37 |
End Class |
| 38 |
|
| 39 |
|
| 40 |
End Namespace |
|