Advertisement
Guest User

SRPlayer

a guest
Apr 23rd, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace KenTestModule
  7. {
  8.     public class Player
  9.     {
  10.         private string _PlayerName;
  11.         private string _Area;
  12.  
  13.         public string PlayerName
  14.         {
  15.             get { return _PlayerName; }
  16.             set { _PlayerName = value; }
  17.         }
  18.         public string Area
  19.         {
  20.             get { return _Area; }
  21.             set { _Area = value; }
  22.         }
  23.  
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement