cyphesis/scripts/cypurge
Al Riddoch bb779e2bb7 In a compound object, that contains sub-objects, COMPONENTS can be like
CONTAINS, but COMPONENTS do not have a separate existence. They are destroyed
if the entity is destroyed, and do not have globally addressable IDs.
They can still be represented by Entity, but won't be in the global ID
dictionary. This leads to the idea of a component property interface whcih
abstracts looking up component IDs. An accompanying stamp can reduce the
frequency with which clients need to inspect the components, as they should
change very infrequently.

SEQ is not being used in the memmap code, as it is not being set.

Re-write plant using properties when we can write scripts for property
handlers.
2007-12-31 13:48:57 +00:00

4 lines
229 B
Bash
Executable file

#!/bin/sh
find . -name \*.h -print0 | xargs -0 grep -l "^#error This file has been removed from the build" | xargs rm
find . -name \*.cpp -print0 | xargs -0 grep -l "^#error This file has been removed from the build" | xargs rm