FRX SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
Entity.h
Go to the documentation of this file.
1//
2// (C) Copyright 2005-2024 by Graebert GmbH.
3//
4// Permission to use, copy, modify, and distribute this software in
5// object code form for any purpose and without fee is hereby granted,
6// provided that the above copyright notice appears in all copies and
7// that both that copyright notice and the limited warranty and
8// restricted rights notice below appear in all supporting
9// documentation.
10//
11// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
12// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
13// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
14// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
15// UNINTERRUPTED OR ERROR FREE.
16
17#pragma once
18
20{
21public:
22 Entity( void );
23 Entity( Entity const& );
24 bool isFlagOff( unsigned int ) const;
25 bool isFlagOn( unsigned int ) const;
27// static void* operator new( unsigned __int64 );
28// static void operator delete( void* );
29 unsigned int flags( void )const;
30 virtual ~Entity( void );
31 void flipFlag( unsigned int );
32 void setFlagOff( unsigned int );
33 void setFlagOn( unsigned int );
34 void setFlags( unsigned int );
35};
void flipFlag(unsigned int)
virtual ~Entity(void)
void setFlags(unsigned int)
Entity & operator=(Entity const &)
bool isFlagOn(unsigned int) const
Entity(Entity const &)
Entity(void)
void setFlagOff(unsigned int)
void setFlagOn(unsigned int)
unsigned int flags(void) const
bool isFlagOff(unsigned int) const