Added some comments to comply a little bit more with the cfpt rules
This commit is contained in:
+12
-3
@@ -1,4 +1,13 @@
|
||||
using System;
|
||||
/*
|
||||
* Rohmer Maxime
|
||||
* STD Project
|
||||
* 25/01/2023
|
||||
* V1.0
|
||||
* Client.cs
|
||||
* Logic base for the client object
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -8,8 +17,8 @@ namespace Caisses
|
||||
{
|
||||
public class Client
|
||||
{
|
||||
public const int MAX_SHOPPING_TIME = 70; //Original 100
|
||||
public const int MIN_SHOPPING_TIME = 5; //Original 10
|
||||
public const int MAX_SHOPPING_TIME = 100; //Original 100
|
||||
public const int MIN_SHOPPING_TIME = 10; //Original 10
|
||||
|
||||
public enum ClientState
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user