added double jump and sitting state
This commit is contained in:
		
							parent
							
								
									2e5c5a8dde
								
							
						
					
					
						commit
						90d07dde3f
					
				
					 148 changed files with 13050 additions and 0 deletions
				
			
		
							
								
								
									
										11
									
								
								term1/seminar01_overload/02_cubev/cubev.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								term1/seminar01_overload/02_cubev/cubev.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,11 @@ | |||
| #include <iostream> | ||||
| using std::cout, std::endl; | ||||
| 
 | ||||
| int cubeV(int x) { | ||||
|     return x * x * x; | ||||
| }  | ||||
| 
 | ||||
| int main() { | ||||
|     int x = 3; | ||||
|     cout << cubeV(x) << endl; | ||||
| } | ||||
		Reference in a new issue