Crossfire Server, Trunk
FacesetWriter.h
Go to the documentation of this file.
1 /*
2  * Crossfire -- cooperative multi-player graphical RPG and adventure game
3  *
4  * Copyright (c) 2020-2021 the Crossfire Development Team
5  *
6  * Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
7  * welcome to redistribute it under certain conditions. For details, please
8  * see COPYING and LICENSE.
9  *
10  * The authors can be reached via e-mail at <crossfire@metalforge.org>.
11  */
12 
13 #ifndef FACESETWRITER_H
14 #define FACESETWRITER_H
15 
16 #include "global.h"
17 #include "image.h"
18 #include "AssetWriter.h"
19 
20 class FacesetWriter : public AssetWriter<face_sets> {
21  public:
22  virtual void write(const face_sets *set, StringBuffer *buf);
23 };
24 
25 #endif /* FACESETWRITER_H */
26 
global.h
AssetWriter.h
FacesetWriter::write
virtual void write(const face_sets *set, StringBuffer *buf)
Definition: FacesetWriter.cpp:15
buf
StringBuffer * buf
Definition: readable.cpp:1565
FacesetWriter
Definition: FacesetWriter.h:20
image.h
StringBuffer
Definition: stringbuffer.cpp:25
face_sets
Definition: image.h:17
AssetWriter
Definition: AssetWriter.h:22