Changeset 8717 in orxonox.OLD for trunk/src/story_entities/story_entity.h
- Timestamp:
- Jun 22, 2006, 2:04:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/story_entity.h
r7283 r8717 35 35 /* initialisation and loading */ 36 36 /** initializes a Story Entity to the needed values */ 37 virtual ErrorMessage init() { };37 virtual ErrorMessage init() { return ErrorMessage(); }; 38 38 /** called to load the data into the StoryEntity*/ 39 virtual ErrorMessage loadData() { };39 virtual ErrorMessage loadData() { return ErrorMessage(); }; 40 40 /** function that unloads the data from the StoryEntity */ 41 virtual ErrorMessage unloadData() { };41 virtual ErrorMessage unloadData() { return ErrorMessage(); }; 42 42 43 43 /* running, stopping and pausing */
Note: See TracChangeset
for help on using the changeset viewer.