Projekt přejmenován. Neko nastaven na výchozí pozici
This commit is contained in:
parent
1a27dd6fab
commit
ceac37920b
104 changed files with 873 additions and 208 deletions
18
ONDClient/CameraSystem.cs
Normal file
18
ONDClient/CameraSystem.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace ONDClient;
|
||||
|
||||
public class CameraSystem {
|
||||
public bool Enabled { get; private set; }
|
||||
public int CurrentCamera { get; private set; }
|
||||
|
||||
public void FlipUp() {
|
||||
Enabled = true;
|
||||
}
|
||||
|
||||
public void FlipDown() {
|
||||
Enabled = false;
|
||||
}
|
||||
|
||||
public void SetCamera(int camera) {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue