mirror of https://github.com/kurisufriend/ballz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
393 B
23 lines
393 B
using System;
|
|
using SFML.Audio;
|
|
using SFML.Graphics;
|
|
using SFML.Window;
|
|
using SFML.System;
|
|
using System.Net;
|
|
using System.Threading;
|
|
|
|
namespace game
|
|
{
|
|
class mouse_t
|
|
{
|
|
public Vector2f position;
|
|
public Mouse.Button button;
|
|
public bool buttonState;
|
|
public mouse_t()
|
|
{
|
|
this.position = new Vector2f(0, 0);
|
|
this.button = Mouse.Button.Left;
|
|
this.buttonState = false;
|
|
}
|
|
}
|
|
}
|
|
|