mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-09 08:27:41 +00:00
Particle and RasterFont progress
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
#define _CDRAWSTRINGOPTIONS
|
||||
|
||||
#include "Kyoto/Graphics/CColor.hpp"
|
||||
#include "rstl/reserved_vector.hpp"
|
||||
#include "Kyoto/Text/TextCommon.hpp"
|
||||
#include "rstl/reserved_vector.hpp"
|
||||
|
||||
class CDrawStringOptions {
|
||||
public:
|
||||
@@ -12,9 +12,11 @@ public:
|
||||
void SetTextDirection(ETextDirection dir) { x0_direction = dir; }
|
||||
ETextDirection GetTextDirection() const { return x0_direction; }
|
||||
void SetPaletteEntry(int idx, uint color) { x4_colors[idx] = color; }
|
||||
uint GetPaletteEntry(int idx) const { return x4_colors[idx]; }
|
||||
|
||||
private:
|
||||
ETextDirection x0_direction;
|
||||
rstl::reserved_vector<u32, 16> x4_colors;
|
||||
rstl::reserved_vector< u32, 16 > x4_colors;
|
||||
};
|
||||
|
||||
#endif // _CDRAWSTRINGOPTIONS
|
||||
|
||||
Reference in New Issue
Block a user