Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 2, 2019, 3:30:57 PM (5 years ago)
Author:
ahuwyler
Message:

Walls are bigger

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxStones.h

    r12307 r12331  
    11#ifndef _OrxoBloxStones_H__
    22#define _OrxoBloxStones_H__
     3
     4
     5#include "OrxoBlox/OrxoBloxPrereqs.h"
    36
    47
     
    2427            //}
    2528
     29            /**
     30            @brief Set the size of the stone.
     31            @param size The dimensions a stone has in the game world. (A stone is a cube)
     32            */
     33            void setSize(float size)
     34                { this->size_ = size; }
     35            /**
     36            @brief Get the size of the stone.
     37            @return Returns the dimensions a stone has in the game world. (A stone is a cube)
     38            */
     39            float getSize(void) const
     40                { return this->size_; }
    2641            /**
    2742            @brief Set the Health of the stone.
Note: See TracChangeset for help on using the changeset viewer.