mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 03:43:38 +00:00
12 lines
305 B
C++
12 lines
305 B
C++
#pragma once
|
|
|
|
class Team {
|
|
public:
|
|
virtual bool isAlliedTo(Team* other);
|
|
|
|
virtual std::wstring getName() = 0;
|
|
virtual std::wstring getFormattedName(
|
|
const std::wstring& teamMemberName) = 0;
|
|
virtual bool canSeeFriendlyInvisibles() = 0;
|
|
virtual bool isAllowFriendlyFire() = 0;
|
|
}; |