mirror of
https://github.com/glest/glest-source.git
synced 2025-08-13 11:54:00 +02:00
initial attempt to add a visual food low warning (consumable falls to 25% and balance is ticking down)
This commit is contained in:
@@ -404,9 +404,16 @@ public:
|
||||
T z;
|
||||
T w;
|
||||
public:
|
||||
Vec4(){
|
||||
Vec4() {
|
||||
};
|
||||
|
||||
explicit Vec4(const T *p){
|
||||
this->x= p[0];
|
||||
this->y= p[1];
|
||||
this->z= p[2];
|
||||
this->w= p[3];
|
||||
}
|
||||
|
||||
explicit Vec4(T *p){
|
||||
this->x= p[0];
|
||||
this->y= p[1];
|
||||
|
Reference in New Issue
Block a user