mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
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.
4 lines
229 B
Bash
Executable file
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
|