mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00

Strike it big with amazing bowling action! Everything that made Gutterball 3D a hit is here - incredible 3D graphics, cool ball-rolling controls, hilarious characters - and more! Eight all-new alleys are waxed and ready for you to toss your choice of 85 unique bowling balls. As you play, earn points and cash and unlock alleys and balls. Even customize a ball with your own settings and images! Addictive bowling fun that will bowl you over!
24 lines
580 B
C#
24 lines
580 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class PlayerObj
|
|
{
|
|
public string playerName;
|
|
public int playerMoney;
|
|
public int playerWin;
|
|
public int playerLoss;
|
|
public int playerStrikes;
|
|
public int playerSpares;
|
|
public int playerGutters;
|
|
|
|
public PlayerObj(string name, int money, int win, int loss, int strikes, int spares, int gutters)
|
|
{
|
|
playerName = name;
|
|
playerMoney = money;
|
|
playerWin = win;
|
|
playerLoss = loss;
|
|
playerStrikes = strikes;
|
|
playerSpares = spares;
|
|
playerGutters = gutters;
|
|
}
|
|
}
|