私が持っているこの 1 つのクラスには、とのprotected
ような変数属性しかありませんが、メソッドはありません。これは悪い習慣ですか?これをゲームの保存機能に使用しています。変数を使用するだけでよく、メソッドは必要ありません。ファイルは次のようになります。int health
int level
Human.h:
// Human.h - Johnny P
#pragma once
namespace SharpEngine {
class Human {
protected:
std::string name;
int level;
int health;
int defense;
int strength;
int experience;
int money;
int inventory[10];
};
}
人間.cpp
// Human.cpp - Johnny P
#include <string>
#include "Human.h"