Animation

From TRCCompSci - AQA Computer Science
Revision as of 21:57, 21 March 2017 by Admin (talk | contribs)
Jump to: navigation, search

Creating Animation Class

You need to create a new class, so from the main menu click File, and select New File. Name the class Animation:

New file class.png

You will have the following code:

 1 using System;
 2 namespace TestGame
 3 {
 4 	public class Player
 5 	{
 6 		public Player()
 7 		{
 8 		}
 9 	}
10 }