mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
11 lines
240 B
C++
11 lines
240 B
C++
#pragma once
|
|
|
|
#include "DummyCriteria.h"
|
|
|
|
class HealthCriteria : public DummyCriteria {
|
|
public:
|
|
HealthCriteria(const std::wstring& id);
|
|
|
|
int getScoreModifier(std::vector<std::shared_ptr<Player> >* players);
|
|
bool isReadOnly();
|
|
}; |