Advertisement
Guest User

main.cpp

a guest
Mar 3rd, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include<cstdlib>
  2. #include<cinttypes>
  3. #include<iostream>
  4. #include<string>
  5. #include<thread>
  6. #include"main.hpp"
  7.  
  8. int main(){
  9.     Spell spell[3]={
  10.         Spell("Fire",10,2),
  11.         Spell("Ice",8,1),
  12.         Spell("Thunder",12,3)
  13.     };
  14.  
  15.     return EXIT_SUCCESS;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement