|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // greatWhole.cpp
- // emptyExample
- //
- // Created by Sebastian Holzki on 17.04.19.
- //
-
- #include "greatWhole.hpp"
- //#include "main.h"
-
-
-
-
- GreatWhole::GreatWhole()
- {
-
-
- }
-
- // -----------------------------------
-
- GreatWhole::~GreatWhole()
- {
-
-
- }
-
- // -----------------------------------
-
-
-
- void GreatWhole::setup(){
-
-
-
- }
-
- // -----------------------------------------------
-
-
- void GreatWhole::update(vector<Avatar*> avatars){
-
-
-
-
- }
-
- // -----------------------------------------------
-
-
- void GreatWhole::draw(){
-
- /*
-
- draw the whole avatar vector
-
- */
-
-
- }
-
-
- // -----------------------------------------------
-
-
- void GreatWhole::addAvatar(Avatar avatar){
-
-
- avatars.push_back(avatar);
-
- /*
-
- Set coordinates in abhängigkeit vom letzten also bei avatars at (max-1)
-
-
- */
-
- }
-
-
|