Advertisement
zhardyCode

Education Game - Fountain Storage

Mar 29th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. [System.Serializable]
  2.  
  3. //acts as a file to store questions. It also provides access to the type of question.
  4. public class FountainStorage {
  5.     //the question and it's type can be added through Unity's inspector
  6.     public string fact;
  7.     public char type;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement