punct.h

来自「descriere descriere descriere」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef _PUNCT_H
#define _PUNCT_H

class Punct
{
    public:
    
	Punct()
	{
	 coord_x = coord_y = 0;
	}

    Punct(int,int);

    
    int coord_x, coord_y;
   
    void reset()
    {
        coord_x = coord_y = 0;
    }
    
    void muta(int , int );
		
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?