forked from lianera/archives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMill.h
35 lines (31 loc) · 787 Bytes
/
Mill.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Mill.h: interface for the CMill class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MILL_H__BD3FF7BC_BB6B_4576_A51C_1A688A98D9E1__INCLUDED_)
#define AFX_MILL_H__BD3FF7BC_BB6B_4576_A51C_1A688A98D9E1__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMill
{
public:
CMill();
virtual ~CMill();
void MadeDiamond();
void DrawPrepare(CDC* pDC);
public:
int PreDiamondType;
int PreDiamondState;
RECT MillRect;
CSize GridSize;
COLORREF MillColor;
COLORREF PreColor;
int probabilityCake;
int probabilityHook;
int probabilitySeven;
int probabilityHeave;
int probabilityBar;
int probabilityTwo;
int probabilitySpade;
};
#endif // !defined(AFX_MILL_H__BD3FF7BC_BB6B_4576_A51C_1A688A98D9E1__INCLUDED_)